summaryrefslogtreecommitdiff
path: root/modules/slotmem
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2015-12-29 15:32:27 +0000
committerYann Ylavic <ylavic@apache.org>2015-12-29 15:32:27 +0000
commit4bfe0a6bba57b8f44aaea3d0ea32d12fd3da761a (patch)
tree43b75b1ebcf407748b6a346c8182ef930a93899c /modules/slotmem
parent89b29c504fa04046f5507188295794ee37046ee2 (diff)
downloadhttpd-4bfe0a6bba57b8f44aaea3d0ea32d12fd3da761a.tar.gz
Follow up to r1715880: revert more abusive ap_casecmpstr[n]() usages.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1722150 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/slotmem')
-rw-r--r--modules/slotmem/mod_slotmem_shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/slotmem/mod_slotmem_shm.c b/modules/slotmem/mod_slotmem_shm.c
index 27a0732f5e..4f0eeeaeb9 100644
--- a/modules/slotmem/mod_slotmem_shm.c
+++ b/modules/slotmem/mod_slotmem_shm.c
@@ -111,7 +111,7 @@ static int slotmem_filenames(apr_pool_t *pool,
{
const char *fname = NULL, *pname = NULL;
- if (slotname && *slotname && ap_casecmpstr(slotname, "none") != 0) {
+ if (slotname && *slotname && strcasecmp(slotname, "none") != 0) {
if (slotname[0] != '/') {
#if !SLOTMEM_UNLINK_SEMANTIC
/* Each generation needs its own file name. */