changeset 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 34051c712e41
children d4288915bba7
files src/http/modules/ngx_http_fastcgi_module.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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 */