1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

mod_ssl: Follow up to r1908537: Fix typo s/MODSSL_USE_ENGINE_API/MODSSL_HAVE_ENGINE_API/

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1914318 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2023-12-04 14:46:32 +00:00
parent 05348fa120
commit 0123a2b0ed

View File

@@ -500,7 +500,7 @@ void ssl_util_thread_setup(apr_pool_t *p)
int modssl_is_engine_id(const char *name) 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? */ /* ### Can handle any other special ENGINE key names here? */
return strncmp(name, "pkcs11:", 7) == 0; return strncmp(name, "pkcs11:", 7) == 0;
#else #else