summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-07-09 06:06:15 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-07-09 06:06:15 +0000
commit8266ad4bf23ad733b9379aecea218b048b381875 (patch)
treed6fb9f0f1f16099b6ef1fe3324f4bbdf65ded2ca
parentde0798520866f28ae8004bd83b8041217ed1633e (diff)
downloadnginx-8266ad4bf23ad733b9379aecea218b048b381875.tar.gz
nginx-8266ad4bf23ad733b9379aecea218b048b381875.tar.bz2
r1275 merge:
omit unnecessary conditions
-rw-r--r--src/http/modules/ngx_http_fastcgi_module.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c
index 4263ea1ed..2e592824a 100644
--- a/src/http/modules/ngx_http_fastcgi_module.c
+++ b/src/http/modules/ngx_http_fastcgi_module.c
@@ -1144,16 +1144,16 @@ ngx_http_fastcgi_process_header(ngx_http_request_t *r)
return NGX_OK;
}
- if (rc == NGX_OK && u->buffer.pos == u->buffer.last) {
+ if (rc == NGX_OK) {
return NGX_AGAIN;
}
- if (rc == NGX_AGAIN) {
- ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
- "upstream split a header line in FastCGI records");
+ /* rc == NGX_AGAIN */
- return NGX_HTTP_UPSTREAM_INVALID_HEADER;
- }
+ ngx_log_error(NGX_LOG_ALERT, r->connection->log, 0,
+ "upstream split a header line in FastCGI records");
+
+ return NGX_HTTP_UPSTREAM_INVALID_HEADER;
}
}