| commit | fda6a08f71e2131c374aca7d488ae25ae3c6ea3f | [log] [tgz] |
|---|---|---|
| author | Igor Sysoev <igor@sysoev.ru> | Tue Aug 07 10:56:09 2007 +0000 |
| committer | Igor Sysoev <igor@sysoev.ru> | Tue Aug 07 10:56:09 2007 +0000 |
| tree | 428cfa57f5826494aec6a57238aa015ad4e6b952 | |
| parent | 4fbd86829b6217cc3b074e833d89a8019e278e79 [diff] [blame] |
omit unnecessary conditions
diff --git a/src/http/modules/ngx_http_flv_module.c b/src/http/modules/ngx_http_flv_module.c index e1bec8b..cc258ea 100644 --- a/src/http/modules/ngx_http_flv_module.c +++ b/src/http/modules/ngx_http_flv_module.c
@@ -91,7 +91,7 @@ rc = ngx_http_discard_request_body(r); - if (rc != NGX_OK && rc != NGX_AGAIN) { + if (rc != NGX_OK) { return rc; }