comparison src/http/modules/ngx_http_static_handler.c @ 294:5cfd65b8b0a7

nginx-0.0.3-2004-03-23-09:01:52 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 23 Mar 2004 06:01:52 +0000
parents 87e73f067470
children af451db3fe99
comparison
equal deleted inserted replaced
293:ec3c049681fd 294:5cfd65b8b0a7
87 return NGX_HTTP_NOT_ALLOWED; 87 return NGX_HTTP_NOT_ALLOWED;
88 } 88 }
89 89
90 rc = ngx_http_discard_body(r); 90 rc = ngx_http_discard_body(r);
91 91
92 if (rc != NGX_OK) { 92 if (rc != NGX_OK && rc != NGX_AGAIN) {
93 return rc; 93 return rc;
94 } 94 }
95 95
96 #if (NGX_HTTP_CACHE) 96 #if (NGX_HTTP_CACHE)
97 97