]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
mod_ssl: Follow up to r1908537: Fix typo s/MODSSL_USE_ENGINE_API/MODSSL_HAVE_ENGINE_API/
authorYann Ylavic <ylavic@apache.org>
Mon, 4 Dec 2023 14:46:32 +0000 (14:46 +0000)
committerYann Ylavic <ylavic@apache.org>
Mon, 4 Dec 2023 14:46:32 +0000 (14:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1914318 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_util.c

index e7825e33f0b1c8f200043e5df539eac019526847..0c9bb5acc3c747d77ea053c13f663fd5f0617c9d 100644 (file)
@@ -500,7 +500,7 @@ void ssl_util_thread_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