diff options
author | Sascha Schumann <sas@php.net> | 2002-04-27 23:37:17 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-04-27 23:37:17 +0000 |
commit | 30fd7de1faef23eec31805294f396de66b634a8f (patch) | |
tree | 9fe31331a18cde3bb10d173fa6c79e100e9cc169 | |
parent | aab439f26fcf28b42f9ec99149df5365112405fe (diff) | |
download | php-git-30fd7de1faef23eec31805294f396de66b634a8f.tar.gz |
s/len/xln/ was necessary here
Noticed by: Charles O Parks III
-rw-r--r-- | ext/zlib/zlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) |