summaryrefslogtreecommitdiff
path: root/php_suhosin.h
diff options
context:
space:
mode:
authorStefan Esser2014-08-31 20:44:31 +0200
committerStefan Esser2014-08-31 20:44:31 +0200
commit597ab68817b833547d99bd9bf7cd47d728e24fef (patch)
treeccdf67d9b95c7f3c0cc075da1bd2bcaea7689851 /php_suhosin.h
parentd16d6e8fcbfaad4164eca1938726834603671781 (diff)
Fix compilation problem with old suhosin patch installed
Diffstat (limited to '')
-rw-r--r--php_suhosin.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/php_suhosin.h b/php_suhosin.h
index b80d9b9..d567877 100644
--- a/php_suhosin.h
+++ b/php_suhosin.h
@@ -391,10 +391,13 @@ ZEND_END_MODULE_GLOBALS(suhosin)
391#define S_MAIL (1<<7L) 391#define S_MAIL (1<<7L)
392#define S_SESSION (1<<8L) 392#define S_SESSION (1<<8L)
393#define S_INTERNAL (1<<29L) 393#define S_INTERNAL (1<<29L)
394#define S_GETCALLER (1<<30L)
395#define S_ALL (S_MEMORY | S_VARS | S_INCLUDE | S_FILES | S_MAIL | S_SESSION | S_MISC | S_SQL | S_EXECUTOR) 394#define S_ALL (S_MEMORY | S_VARS | S_INCLUDE | S_FILES | S_MAIL | S_SESSION | S_MISC | S_SQL | S_EXECUTOR)
396#endif 395#endif
397 396
397#ifndef S_GETCALLER
398#define S_GETCALLER (1<<30L)
399#endif
400
398#define SUHOSIN_NORMAL 0 401#define SUHOSIN_NORMAL 0
399#define SUHOSIN_EVAL 1 402#define SUHOSIN_EVAL 1
400 403