diff src/http/modules/ngx_http_stub_status_module.c @ 1374:aabbf66b61ea

omit unnecessary conditions
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Aug 2007 10:56:09 +0000
parents cc114c85be0f
children 022ec9420f80
line wrap: on
line diff
--- a/src/http/modules/ngx_http_stub_status_module.c	Tue Aug 07 10:53:27 2007 +0000
+++ b/src/http/modules/ngx_http_stub_status_module.c	Tue Aug 07 10:56:09 2007 +0000
@@ -71,7 +71,7 @@
 
     rc = ngx_http_discard_request_body(r);
 
-    if (rc != NGX_OK && rc != NGX_AGAIN) {
+    if (rc != NGX_OK) {
         return rc;
     }