From: Ruslan Ermilov Date: Mon, 25 Jun 2012 13:08:25 +0000 (+0000) Subject: Fixed a harmless error in spelling of "Connection: close" when computing X-Git-Tag: release-1.3.2~5 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=8c861f06c84590868907701454c41aa04973fe1d;p=nginx.git Fixed a harmless error in spelling of "Connection: close" when computing the response header length. --- diff --git a/src/http/ngx_http_header_filter_module.c b/src/http/ngx_http_header_filter_module.c index 19f531b5d..1e01c857d 100644 --- a/src/http/ngx_http_header_filter_module.c +++ b/src/http/ngx_http_header_filter_module.c @@ -395,7 +395,7 @@ ngx_http_header_filter(ngx_http_request_t *r) } } else { - len += sizeof("Connection: closed" CRLF) - 1; + len += sizeof("Connection: close" CRLF) - 1; } #if (NGX_HTTP_GZIP)