From 5de7bf562f55eae49d3424670ad56f68458ad7f1 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sat, 19 Nov 2005 09:38:10 +0000 Subject: [PATCH] - fix phpinfo() --- http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.c b/http.c index 4a7ccd9..567d456 100644 --- a/http.c +++ b/http.c @@ -220,7 +220,7 @@ PHP_INI_MH(http_update_allowed_methods) #undef CASE_HTTP_ETAG_HASH #define CASE_HTTP_ETAG_HASH(HASH) \ case HTTP_ETAG_##HASH: \ - ZEND_WRITE(#HASH, lenof(#HASH)); \ + ZEND_WRITE("HTTP_ETAG_"#HASH, lenof("HTTP_ETAG_"#HASH)); \ break; PHP_INI_DISP(http_etag_mode_displayer) { -- 2.30.2