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 e0c5661fcc
commit 96cef18459
1 changed files with 1 additions and 1 deletions

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)