From: Jeff Trawick Date: Fri, 9 Aug 2002 19:21:57 +0000 (+0000) Subject: don't lose const looking for that '/' X-Git-Tag: AGB_BEFORE_AAA_CHANGES~283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8dcdcbde4daeaff94d1b713e8255e4fc132b2fcc;p=apache don't lose const looking for that '/' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96334 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index 97189aa355..93392a0e4f 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -2685,7 +2685,7 @@ static int do_negotiation(request_rec *r, negotiation_state *neg, * non-neighboring variant. We can have a non-neighboring * variant when processing a type map. */ - if (ap_strchr(variant->file_name, '/')) + if (ap_strchr_c(variant->file_name, '/')) neg->is_transparent = 0; /* We can't be transparent, because of the behavior