From ca1bed390d26b469505282fe8fac3827a07d6130 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 8 May 2008 09:53:22 +0000 Subject: fix error introduced in r1273 and r1275: nginx did not process FastCGI response if header was at end of FastCGI record --- src/http/modules/ngx_http_fastcgi_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 */ -- cgit