diff src/http/modules/ngx_http_proxy_module.c @ 2949:fe484c0be7c0

fix building --without-http-cache, broken in r2930
author Igor Sysoev <igor@sysoev.ru>
date Mon, 15 Jun 2009 14:25:08 +0000
parents 37b7cd336fdf
children dff9764eaca2
line wrap: on
line diff
--- a/src/http/modules/ngx_http_proxy_module.c
+++ b/src/http/modules/ngx_http_proxy_module.c
@@ -2343,7 +2343,10 @@ ngx_http_proxy_merge_headers(ngx_conf_t 
     }
 
     if (conf->headers_set_hash.buckets
-        && ((conf->upstream.cache == NULL) == (prev->upstream.cache == NULL)))
+#if (NGX_HTTP_CACHE)
+        && ((conf->upstream.cache == NULL) == (prev->upstream.cache == NULL))
+#endif
+       )
     {
         return NGX_OK;
     }