From: Igor Sysoev Date: Thu, 8 May 2008 09:53:22 +0000 (+0000) Subject: fix error introduced in r1273 and r1275: X-Git-Tag: release-0.6.31~1 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=ca1bed390d26b469505282fe8fac3827a07d6130;p=nginx.git fix error introduced in r1273 and r1275: nginx did not process FastCGI response if header was at end of FastCGI record --- diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index 5678e21f3..17e8a3dbf 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -1232,7 +1232,7 @@ ngx_http_fastcgi_process_header(ngx_http_request_t *r) } if (rc == NGX_OK) { - return NGX_AGAIN; + continue; } /* rc == NGX_AGAIN */