You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2008/04/08 14:30:06 UTC

svn commit: r645875 - /httpd/httpd/trunk/modules/http/http_core.c

Author: fuankg
Date: Tue Apr  8 05:30:05 2008
New Revision: 645875

URL: http://svn.apache.org/viewvc?rev=645875&view=rev
Log:
NO var declarations in the middle of the code.

Modified:
    httpd/httpd/trunk/modules/http/http_core.c

Modified: httpd/httpd/trunk/modules/http/http_core.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_core.c?rev=645875&r1=645874&r2=645875&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_core.c (original)
+++ httpd/httpd/trunk/modules/http/http_core.c Tue Apr  8 05:30:05 2008
@@ -189,6 +189,7 @@
     request_rec *r;
     conn_state_t *cs = c->cs;
     apr_socket_t *csd = NULL;
+    int mpm_state = 0;
 
     /*
      * Read and process each request found on our connection
@@ -220,7 +221,6 @@
 
         ap_update_child_status(c->sbh, SERVER_BUSY_KEEPALIVE, NULL);
 
-        int mpm_state = 0;
         if (ap_mpm_query(AP_MPMQ_MPM_STATE, &mpm_state)) {
             break;
         }