Fixed a harmless error in spelling of "Connection: close" when computing
the response header length.
This commit is contained in:
parent
e0c5661fcc
commit
96cef18459
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue