commit | 8c8a6e5f2f3ae008de82e221c1d45d1c9321c15b | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Sun Mar 16 13:29:49 2008 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Sun Mar 16 13:29:49 2008 +0000 |
tree | cad8856db0ce146cdc26eb2416844da558491906 | |
parent | a616ef77e2a0bba3949a33a9394a88c6874fa702 [diff] [blame] |
use the more correct mask
diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index b83810d..2e38434 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c
@@ -775,7 +775,7 @@ if (c) { hash = ngx_hash(hash, c); r->lowcase_header[i++] = c; - i &= ~NGX_HTTP_LC_HEADER_LEN; + i &= (NGX_HTTP_LC_HEADER_LEN - 1); break; }