From: Igor Sysoev Date: Thu, 17 Apr 2008 14:32:11 +0000 (+0000) Subject: small fix X-Git-Tag: release-0.6.30~10 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=6a2ea3f54430625120fc31556860531d2859eac7;p=nginx.git small fix --- diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c index e0aefed6f..9ec861cfa 100644 --- a/src/http/ngx_http_upstream.c +++ b/src/http/ngx_http_upstream.c @@ -3205,7 +3205,7 @@ ngx_http_upstream_server(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) fail_timeout = ngx_parse_time(&s, 1); - if (fail_timeout < 0) { + if (fail_timeout == NGX_ERROR) { goto invalid; }