From: Jeff Trawick Date: Wed, 5 Apr 2000 02:22:20 +0000 (+0000) Subject: get rid of an unused variable from virtualhost_section() X-Git-Tag: apache-doc-split-01~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a212f927b0f43eeeeddc678268f2cc12b6ff274c;p=apache get rid of an unused variable from virtualhost_section() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84917 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 17305f569e..b5e460214c 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -1723,7 +1723,7 @@ static const char *virtualhost_section(cmd_parms *cmd, void *dummy, char *arg) server_rec *main_server = cmd->server, *s; const char *errmsg; char *endp = strrchr(arg, '>'); - ap_context_t *p = cmd->pool, *ptemp = cmd->temp_pool; + ap_context_t *p = cmd->pool; const char *old_end_token; const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);