From b3265c64fb614dd71aa506bc549460a773650d8b Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Thu, 3 Aug 2006 09:33:35 +0000 Subject: [PATCH] * 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 --- modules/proxy/mod_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 2bfb1b90d7..54fff0fe39 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -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); -- 2.40.0