Skip to content

Commit

Permalink
Fix compilation problem with old suhosin patch installed
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Esser committed Aug 31, 2014
1 parent d16d6e8 commit 597ab68
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion php_suhosin.h
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,13 @@ ZEND_END_MODULE_GLOBALS(suhosin)
#define S_MAIL (1<<7L)
#define S_SESSION (1<<8L)
#define S_INTERNAL (1<<29L)
#define S_GETCALLER (1<<30L)
#define S_ALL (S_MEMORY | S_VARS | S_INCLUDE | S_FILES | S_MAIL | S_SESSION | S_MISC | S_SQL | S_EXECUTOR)
#endif

#ifndef S_GETCALLER
#define S_GETCALLER (1<<30L)
#endif

#define SUHOSIN_NORMAL 0
#define SUHOSIN_EVAL 1

Expand Down

0 comments on commit 597ab68

Please sign in to comment.