summaryrefslogtreecommitdiff
path: root/modules/loggers
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2015-11-23 16:48:35 +0000
committerYann Ylavic <ylavic@apache.org>2015-11-23 16:48:35 +0000
commite30575b0b09f82f3586310281c00be3d137d3229 (patch)
tree5db11101318258740ea2249f5dfc8f112399797a /modules/loggers
parentc80e6b2a34a20a048be8a9bfb663680fcd1598c5 (diff)
downloadhttpd-e30575b0b09f82f3586310281c00be3d137d3229.tar.gz
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
Diffstat (limited to 'modules/loggers')
-rw-r--r--modules/loggers/mod_log_config.c2
1 files changed, 1 insertions, 1 deletions
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);