summaryrefslogtreecommitdiff
path: root/ext/session/session.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-12-05 20:41:55 +0000
committerMarcus Boerger <helly@php.net>2002-12-05 20:41:55 +0000
commit3cf581b1b3dbd992669ae3c8f80f71db576a2a9d (patch)
tree29a6acfb010759c9d3b60d7b64d8d4d30f214da5 /ext/session/session.c
parent9a045280611bf70d212093a7535d763ccee7ef9b (diff)
downloadphp-git-3cf581b1b3dbd992669ae3c8f80f71db576a2a9d.tar.gz
correct code that is guarded by "#if 0"
Diffstat (limited to 'ext/session/session.c')
-rw-r--r--ext/session/session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/session/session.c b/ext/session/session.c
index 29bc9466c2..8b6be415ab 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -98,7 +98,7 @@ static PHP_INI_MH(OnUpdateSaveHandler)
#if 0
if(!PS(mod)) {
- php_error_docref(E_ERROR, "Cannot find save handler %s", new_value);
+ php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find save handler %s", new_value);
}
#endif
return SUCCESS;
@@ -119,7 +119,7 @@ static PHP_INI_MH(OnUpdateSerializer)
#if 0
if(!PS(serializer)) {
- php_error_docref(E_ERROR, "Cannot find serialization handler %s", new_value);
+ php_error_docref(NULL TSRMLS_CC, E_ERROR, "Cannot find serialization handler %s", new_value);
}
#endif
return SUCCESS;