1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Fix various "variable 'x' set but not used" warnings.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1125877 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Fritsch
2011-05-22 07:42:18 +00:00
parent 0a950836ad
commit 51226bdcca
7 changed files with 26 additions and 30 deletions

View File

@@ -1113,11 +1113,8 @@ static int x_quick_handler(request_rec *r, int lookup_uri)
*/
static int x_pre_connection(conn_rec *c, void *csd)
{
x_cfg *cfg;
char *note;
cfg = our_cconfig(c);
/*
* Log the call and exit.
*/
@@ -1138,9 +1135,6 @@ static int x_pre_connection(conn_rec *c, void *csd)
*/
static int x_process_connection(conn_rec *c)
{
x_cfg *cfg;
cfg = our_cconfig(c);
trace_connection(c, "x_process_connection()");
return DECLINED;