From e30575b0b09f82f3586310281c00be3d137d3229 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Mon, 23 Nov 2015 16:48:35 +0000 Subject: More ap_casecmpstr[n]() usages (follow up to r1715876). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1715880 13f79535-47bb-0310-9956-ffa450edef68 --- modules/loggers/mod_log_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/loggers') diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c index 2a83e66da6..f518a2b5dc 100644 --- a/modules/loggers/mod_log_config.c +++ b/modules/loggers/mod_log_config.c @@ -600,7 +600,7 @@ static const char *log_cookie(request_rec *r, char *a) --last; } - if (!strcasecmp(name, a)) { + if (!ap_casecmpstr(name, a)) { /* last1 points to the next char following the ';' delim, or the trailing NUL char of the string */ last = last1 - (*last1 ? 2 : 1); -- cgit v1.2.3