Fixed a harmless error in spelling of "Connection: close" when computing

the response header length.
This commit is contained in:
Ruslan Ermilov 2012-06-25 13:08:25 +00:00
parent 42444811b9
commit 8c861f06c8

View File

@ -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)