diff options
author | Sascha Schumann <sas@php.net> | 2003-05-10 16:49:21 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2003-05-10 16:49:21 +0000 |
commit | ed68ca44ecb0b00a7b84bf57dadd7b9cc17e5e98 (patch) | |
tree | 9ba205399f04b10eea708e312a0b37c84c096322 /ext/session | |
parent | 2726d79b9fa27fe748b1fc8d49bab06b16c0fe0f (diff) | |
download | php-git-ed68ca44ecb0b00a7b84bf57dadd7b9cc17e5e98.tar.gz |
Fix types of bug_compat entries
PR: #21312
Submitted by: Rob Richards <rrichards@ctindustries.net>
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/php_session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 05e319d56a..13f17d73a6 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -109,8 +109,8 @@ typedef struct _php_ps_globals { long gc_maxlifetime; int module_number; long cache_expire; - long bug_compat; /* Whether to behave like PHP 4.2 and earlier */ - long bug_compat_warn; /* Whether to warn about it */ + zend_bool bug_compat; /* Whether to behave like PHP 4.2 and earlier */ + zend_bool bug_compat_warn; /* Whether to warn about it */ const struct ps_serializer_struct *serializer; zval *http_session_vars; zend_bool auto_start; |