From d8db1f875514d47e7830471f2aae9d21671811c8 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Tue, 17 Feb 2026 19:37:17 +0000 Subject: [PATCH] * Use correct function name when compiling against APR < 1.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit PR: 69954 Submitted by: Tần Quảng Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1931911 13f79535-47bb-0310-9956-ffa450edef68 --- changes-entries/pr69954.txt | 2 ++ modules/md/md_util.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changes-entries/pr69954.txt diff --git a/changes-entries/pr69954.txt b/changes-entries/pr69954.txt new file mode 100644 index 0000000000..747f5d5642 --- /dev/null +++ b/changes-entries/pr69954.txt @@ -0,0 +1,2 @@ + *) mod_md: Use correct function name when compiling against APR < 1.6.0. + PR 69954 [Tần Quảng ] diff --git a/modules/md/md_util.h b/modules/md/md_util.h index 51bad5ba8e..cf43964ebb 100644 --- a/modules/md/md_util.h +++ b/modules/md/md_util.h @@ -27,7 +27,7 @@ #else /* Define a (poor) backwards-compatibility entry point for * apr_cstr_casecmp() from APR 1.6. */ -#define apr_cstr_casecmp apr_natcasecmp +#define apr_cstr_casecmp apr_strnatcasecmp #endif struct apr_array_header_t; -- 2.47.3