diff options
author | Yann Ylavic <ylavic@apache.org> | 2015-11-23 17:48:35 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2015-11-23 17:48:35 +0100 |
commit | e30575b0b09f82f3586310281c00be3d137d3229 (patch) | |
tree | 5db11101318258740ea2249f5dfc8f112399797a /modules/loggers | |
parent | Use new ap_casecmpstr[n]() functions where appropriate (not exhaustive). (diff) | |
download | apache2-e30575b0b09f82f3586310281c00be3d137d3229.tar.xz apache2-e30575b0b09f82f3586310281c00be3d137d3229.zip |
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.c | 2 |
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); |