diff options
author | Antony Dovgal <tony2001@php.net> | 2005-06-01 18:27:50 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-06-01 18:27:50 +0000 |
commit | 29319a81b8d07d177476f34ed5817f70142434cd (patch) | |
tree | af2942fb4834876a1d5ab6be813f2746aed2be8c /ext/session | |
parent | 8b134356efa8d3b811082b0c946b962c25a26b9c (diff) | |
download | php-git-29319a81b8d07d177476f34ed5817f70142434cd.tar.gz |
fix typo
(see details here: http://news.php.net/php.internals/16350)
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/session.c b/ext/session/session.c index e2efb9ee74..9c6940e02a 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -1098,7 +1098,7 @@ static void php_session_reset_id(TSRMLS_D) smart_str_0(&var); REGISTER_STRINGL_CONSTANT("SID", var.c, var.len, 0); } else { - REGISTER_STRINGL_CONSTANT("SID", STR_EMPTY_ALLOC(), 0, 1); + REGISTER_STRINGL_CONSTANT("SID", STR_EMPTY_ALLOC(), 0, 0); } if (PS(apply_trans_sid)) { |