]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r1914318 from trunk:
authorJoe Orton <jorton@apache.org>
Wed, 3 Jan 2024 15:03:35 +0000 (15:03 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 3 Jan 2024 15:03:35 +0000 (15:03 +0000)
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

modules/ssl/ssl_util.c

index 227af4b3c464feddae82fe1ec9a77bad53247af4..87ddfa7715a661101d4caa26943d0b12c75fcc3e 100644 (file)
@@ -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