From 30fd7de1faef23eec31805294f396de66b634a8f Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sat, 27 Apr 2002 23:37:17 +0000 Subject: [PATCH] s/len/xln/ was necessary here Noticed by: Charles O Parks III --- ext/zlib/zlib.c | 4 ++-- 1 file 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) -- 2.50.1