From: William A. Rowe Jr Date: Fri, 9 Jan 2009 17:23:34 +0000 (+0000) Subject: Oh brother; we just dupped these to lowercase them, no need to re-dup again X-Git-Tag: 2.3.2~200 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3b87928674f4a28f4db0acf8e52cd98de050b78;p=apache Oh brother; we just dupped these to lowercase them, no need to re-dup again git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@733091 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/core.c b/server/core.c index 9d044fd182..0dadf1a5d7 100644 --- a/server/core.c +++ b/server/core.c @@ -2268,7 +2268,7 @@ static const char *set_accf_map(cmd_parms *cmd, void *dummy, ap_str_tolower(proto); accf = apr_pstrdup(cmd->pool, iaccf); ap_str_tolower(accf); - apr_table_set(conf->accf_map, proto, accf); + apr_table_setn(conf->accf_map, proto, accf); return NULL; }