Commit c00a0785 authored by Joe Orton's avatar Joe Orton
Browse files

* modules/proxy/mod_proxy_html.c (comp_urlmap): Fix const-ness warning.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1200550 13f79535-47bb-0310-9956-ffa450edef68
parent d6a8536e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1054,7 +1054,7 @@ static const char* comp_urlmap(cmd_parms *cmd, urlmap* newmap,
           /* we got a substitution.  Check for the case (3) above
            * that the regexp gets wrong: a negation without a comparison.
            */
            if ((cond[0] == '!') && !strchr(cond, '=')) {
            if ((cond[0] == '!') && !ap_strchr_c(cond, '=')) {
                memmove(newcond+1, newcond, strlen(newcond)-1);
                newcond[0] = '!';
            }