diff src/http/modules/ngx_http_fastcgi_module.c @ 1998:63c60504c0bf

fix error introduced in r1273 and r1275: nginx did not process FastCGI response if header was at end of FastCGI record
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 May 2008 09:53:22 +0000
parents ab18958e1322
children f1cff424caeb a60b3fcf25ec
line wrap: on
line diff
--- 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
         }
 
         if (rc == NGX_OK) {
-            return NGX_AGAIN;
+            continue;
         }
 
         /* rc == NGX_AGAIN */