From: Sascha Schumann Date: Sat, 27 Apr 2002 23:37:17 +0000 (+0000) Subject: s/len/xln/ was necessary here X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~399 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30fd7de1faef23eec31805294f396de66b634a8f;p=php s/len/xln/ was necessary here Noticed by: Charles O Parks III --- diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 788db98117..d109debea1 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -75,11 +75,11 @@ #include "ext/standard/php_smart_str.h" -#define ADD_CL_HEADER(len) do { \ +#define ADD_CL_HEADER(xln) do { \ smart_str str = {0}; \ \ smart_str_appends(&str, "Content-Length: "); \ - smart_str_append_long(&str, len); \ + smart_str_append_long(&str, xln); \ smart_str_0(&str); \ sapi_add_header(str.c, str.len, 0); \ } while(0)