[nginx] svn commit: r4699 - trunk/src/http

ru at nginx.com ru at nginx.com
Mon Jun 25 13:08:25 UTC 2012


Author: ru
Date: 2012-06-25 13:08:25 +0000 (Mon, 25 Jun 2012)
New Revision: 4699
URL: http://trac.nginx.org/nginx/changeset/4699/nginx

Log:
Fixed a harmless error in spelling of "Connection: close" when computing
the response header length.


Modified:
   trunk/src/http/ngx_http_header_filter_module.c

Modified: trunk/src/http/ngx_http_header_filter_module.c
===================================================================
--- trunk/src/http/ngx_http_header_filter_module.c	2012-06-21 11:02:22 UTC (rev 4698)
+++ trunk/src/http/ngx_http_header_filter_module.c	2012-06-25 13:08:25 UTC (rev 4699)
@@ -395,7 +395,7 @@
         }
 
     } else {
-        len += sizeof("Connection: closed" CRLF) - 1;
+        len += sizeof("Connection: close" CRLF) - 1;
     }
 
 #if (NGX_HTTP_GZIP)



More information about the nginx-devel mailing list