aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_core_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-12-23 08:10:17 +0000
committerIgor Sysoev <igor@sysoev.ru>2008-12-23 08:10:17 +0000
commitce559527907bd047078603bb46a599cba8006b3d (patch)
tree25dba418ed9346a49bdbf7d03af07511edf859fd /src/http/ngx_http_core_module.c
parent40e2269bfbc7d475f616b3e97931c012beef1240 (diff)
downloadnginx-ce559527907bd047078603bb46a599cba8006b3d.tar.gz
nginx-ce559527907bd047078603bb46a599cba8006b3d.zip
fix the previous commit
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r--src/http/ngx_http_core_module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c
index 8f25f1ab5..6a72f31d5 100644
--- a/src/http/ngx_http_core_module.c
+++ b/src/http/ngx_http_core_module.c
@@ -862,7 +862,7 @@ ngx_http_core_find_config_phase(ngx_http_request_t *r,
return NGX_OK;
}
- if (r->headers_in.expect && r->http_version < NGX_HTTP_VERSION_11) {
+ if (r->headers_in.expect && r->http_version > NGX_HTTP_VERSION_10) {
expect = ngx_http_core_send_continue(r);
if (expect != NGX_OK) {