From 8dcdcbde4daeaff94d1b713e8255e4fc132b2fcc Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Fri, 9 Aug 2002 19:21:57 +0000 Subject: [PATCH] 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 --- modules/mappers/mod_negotiation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0