From: Joe Orton Date: Wed, 3 Jan 2024 15:03:35 +0000 (+0000) Subject: Merge r1914318 from trunk: X-Git-Tag: 2.4.59-rc1-candidate~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43f7bc4508cc3750ee3a0c01a73d21f23fa2eee2;p=thirdparty%2Fapache%2Fhttpd.git Merge r1914318 from trunk: mod_ssl: Follow up to r1908537: Fix typo s/MODSSL_USE_ENGINE_API/MODSSL_HAVE_ENGINE_API/ Submitted by: ylavic Reviewed by: ylavic, minfrin, jorton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1915067 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_util.c b/modules/ssl/ssl_util.c index 227af4b3c46..87ddfa7715a 100644 --- a/modules/ssl/ssl_util.c +++ b/modules/ssl/ssl_util.c @@ -476,7 +476,7 @@ void ssl_util_thread_id_setup(apr_pool_t *p) int modssl_is_engine_id(const char *name) { -#if MODSSL_USE_ENGINE_API +#if MODSSL_HAVE_ENGINE_API /* ### Can handle any other special ENGINE key names here? */ return strncmp(name, "pkcs11:", 7) == 0; #else