From: Ruediger Pluem Date: Tue, 17 Feb 2026 19:37:17 +0000 (+0000) Subject: * Use correct function name when compiling against APR < 1.6.0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8db1f875514d47e7830471f2aae9d21671811c8;p=thirdparty%2Fapache%2Fhttpd.git * Use correct function name when compiling against APR < 1.6.0 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 --- 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;