Commit 4d5aec91 authored by Joe Orton's avatar Joe Orton
Browse files

* modules/proxy/mod_proxy.c (proxysection): Fix another strchr() warning.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@428291 13f79535-47bb-0310-9956-ffa450edef68
parent b39ef6d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1774,7 +1774,7 @@ static const char *proxysection(cmd_parms *cmd, void *mconfig, const char *arg)
            return apr_pstrcat(cmd->pool, thiscmd->name,
                               "> arguments are not supported for wildchar url.",
                               NULL);
        if (!strchr(conf->p, ':'))
        if (!ap_strchr_c(conf->p, ':'))
            return apr_pstrcat(cmd->pool, thiscmd->name,
                               "> arguments are not supported for non url.",
                               NULL);