comparison src/http/modules/ngx_http_proxy_module.c @ 498:ef5c97e49c35 NGINX_0_7_61

nginx 0.7.61 *) Bugfix: nginx could not be built on MacOSX 10.6. the bug had appeared in 0.8.2. *) Bugfix: nginx could not be built --without-http-cache; the bug had appeared in 0.7.60. *) Bugfix: a segmentation fault occurred in worker process, if a backend 401 error was intercepted and the backend did not set the "WWW-Authenticate" response header line. Thanks to Eugene Mychlo.
author Igor Sysoev <http://sysoev.ru>
date Mon, 22 Jun 2009 00:00:00 +0400
parents 116d5de7cbb6
children 89dc5654117c
comparison
equal deleted inserted replaced
497:b0914e65af8e 498:ef5c97e49c35
2341 conf->headers_set_hash = prev->headers_set_hash; 2341 conf->headers_set_hash = prev->headers_set_hash;
2342 conf->headers_source = prev->headers_source; 2342 conf->headers_source = prev->headers_source;
2343 } 2343 }
2344 2344
2345 if (conf->headers_set_hash.buckets 2345 if (conf->headers_set_hash.buckets
2346 && ((conf->upstream.cache == NULL) == (prev->upstream.cache == NULL))) 2346 #if (NGX_HTTP_CACHE)
2347 && ((conf->upstream.cache == NULL) == (prev->upstream.cache == NULL))
2348 #endif
2349 )
2347 { 2350 {
2348 return NGX_OK; 2351 return NGX_OK;
2349 } 2352 }
2350 2353
2351 2354