changeset 2420:2820d548417d

fix the previous commit
author Igor Sysoev <igor@sysoev.ru>
date Tue, 23 Dec 2008 08:10:17 +0000
parents 4876c3966fbd
children 8f0f1d151f14
files src/http/ngx_http_core_module.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
         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) {