r1275 merge:

omit unnecessary conditions
This commit is contained in:
Igor Sysoev 2007-07-09 06:06:15 +00:00
parent 4a7cc46f8c
commit 08f9992a63
1 changed files with 6 additions and 6 deletions

View File

@ -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;
}
}