From: Guenter Knauf Date: Tue, 8 Apr 2008 12:30:05 +0000 (+0000) Subject: NO var declarations in the middle of the code. X-Git-Tag: 2.3.0~769 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e2c24c781f304556635144b8989244d1e787dec;p=thirdparty%2Fapache%2Fhttpd.git NO var declarations in the middle of the code. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645875 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index fbe4aa3db5c..d96c3125f79 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -189,6 +189,7 @@ static int ap_process_http_connection(conn_rec *c) 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 @@ static int ap_process_http_connection(conn_rec *c) 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; }