comparison src/http/modules/ngx_http_static_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 f497ed7682a7
comparison
equal deleted inserted replaced
1373:fdea12ffb24a 1374:aabbf66b61ea
100 return NGX_DECLINED; 100 return NGX_DECLINED;
101 } 101 }
102 102
103 rc = ngx_http_discard_request_body(r); 103 rc = ngx_http_discard_request_body(r);
104 104
105 if (rc != NGX_OK && rc != NGX_AGAIN) { 105 if (rc != NGX_OK) {
106 return rc; 106 return rc;
107 } 107 }
108 108
109 log = r->connection->log; 109 log = r->connection->log;
110 110