]> granicus.if.org Git - php/commitdiff
s/len/xln/ was necessary here
authorSascha Schumann <sas@php.net>
Sat, 27 Apr 2002 23:37:17 +0000 (23:37 +0000)
committerSascha Schumann <sas@php.net>
Sat, 27 Apr 2002 23:37:17 +0000 (23:37 +0000)
Noticed by: Charles O Parks III

ext/zlib/zlib.c

index 788db98117c4552243ed30b811f84138c4124a98..d109debea1cb77759710efbd0ea2f3301f044463 100644 (file)
 
 #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)