]> git.kaiwu.me - nginx.git/commitdiff
small optimization
authorIgor Sysoev <igor@sysoev.ru>
Fri, 4 Sep 2009 09:50:58 +0000 (09:50 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Fri, 4 Sep 2009 09:50:58 +0000 (09:50 +0000)
src/os/unix/ngx_freebsd_sendfile_chain.c

index 976b6d0b44b8a2717bf8e7c461f479eaad88b50b..50d5923dd0a7040aae36c4410210f68f2fe06568 100644 (file)
@@ -295,14 +295,13 @@ ngx_freebsd_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in, off_t limit)
 
                 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, err,
                                "sendfile() sent only %O bytes", sent);
-            }
 
             /*
              * sendfile() in FreeBSD 3.x-4.x may return value >= 0
              * on success, although only 0 is documented
              */
 
-            if (rc >= 0 && sent == 0) {
+            } else if (rc >= 0 && sent == 0) {
 
                 /*
                  * if rc is OK and sent equal to zero, then someone