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 /server/util.c | |
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 'server/util.c')
-rw-r--r-- | server/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util.c b/server/util.c index 76b7e2c957..b69df08c60 100644 --- a/server/util.c +++ b/server/util.c @@ -881,7 +881,7 @@ AP_DECLARE(apr_status_t) ap_pcfg_openfile(ap_configfile_t **ret_cfg, if (finfo.filetype != APR_REG && #if defined(WIN32) || defined(OS2) || defined(NETWARE) - strcasecmp(apr_filepath_name_get(name), "nul") != 0) { + ap_casecmpstr(apr_filepath_name_get(name), "nul") != 0) { #else strcmp(name, "/dev/null") != 0) { #endif /* WIN32 || OS2 */ |