You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2015/11/21 23:07:27 UTC

svn commit: r1715584 - /httpd/httpd/trunk/server/connection.c

Author: jailletc36
Date: Sat Nov 21 22:07:26 2015
New Revision: 1715584

URL: http://svn.apache.org/viewvc?rev=1715584&view=rev
Log:
Remove some useless 'return' statements.

Modified:
    httpd/httpd/trunk/server/connection.c

Modified: httpd/httpd/trunk/server/connection.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/connection.c?rev=1715584&r1=1715583&r2=1715584&view=diff
==============================================================================
--- httpd/httpd/trunk/server/connection.c (original)
+++ httpd/httpd/trunk/server/connection.c Sat Nov 21 22:07:26 2015
@@ -189,7 +189,6 @@ AP_DECLARE(void) ap_lingering_close(conn
     } while (now < timeup);
 
     apr_socket_close(csd);
-    return;
 }
 
 AP_CORE_DECLARE(void) ap_process_connection(conn_rec *c, void *csd)