From: Igor Sysoev Date: Tue, 3 Aug 2010 12:53:06 +0000 (+0000) Subject: use NULL instead of 0 X-Git-Tag: release-0.8.48~5 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=e4994fbacb8a8f1496fb980aa0ec0ff1d5916525;p=nginx.git use NULL instead of 0 --- diff --git a/src/http/modules/ngx_http_proxy_module.c b/src/http/modules/ngx_http_proxy_module.c index caf27b67c..e311bb9d3 100644 --- a/src/http/modules/ngx_http_proxy_module.c +++ b/src/http/modules/ngx_http_proxy_module.c @@ -572,7 +572,7 @@ ngx_http_proxy_handler(ngx_http_request_t *r) u = r->upstream; - if (plcf->proxy_lengths == 0) { + if (plcf->proxy_lengths == NULL) { ctx->vars = plcf->vars; u->schema = plcf->vars.schema; #if (NGX_HTTP_SSL)