Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-05-08 13:53:22 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-05-08 13:53:22 +0400
commitca1bed390d26b469505282fe8fac3827a07d6130 (patch)
tree6bc720630611abd07ddb9998c1b6d977350bd240
parenta327841bff65988519536b047c79dbd189c9c3d6 (diff)
fix error introduced in r1273 and r1275:
nginx did not process FastCGI response if header was at end of FastCGI record
-rw-r--r--src/http/modules/ngx_http_fastcgi_module.c2
1 files changed, 1 insertions, 1 deletions
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 */