diff src/http/modules/ngx_http_proxy_module.c @ 1488:0e66eabd18b5

the "proxy_hide_header" and "fastcgi_hide_header" directives did not hide response header lines whose name was longer than 32 characters
author Igor Sysoev <igor@sysoev.ru>
date Sat, 15 Sep 2007 16:54:58 +0000
parents 943f2ba615cd
children 022ec9420f80
line wrap: on
line diff
--- a/src/http/modules/ngx_http_proxy_module.c
+++ b/src/http/modules/ngx_http_proxy_module.c
@@ -1141,7 +1141,7 @@ ngx_http_proxy_process_header(ngx_http_r
 
             } else {
                 for (i = 0; i < h->key.len; i++) {
-                    h->lowcase_key[i] = ngx_tolower(h->lowcase_key[i]);
+                    h->lowcase_key[i] = ngx_tolower(h->key.data[i]);
                 }
             }