From 82180bf08b4a07e41e341ada18b22d4dc58d403a Mon Sep 17 00:00:00 2001 From: Michael Ortmann <41313082+michaelortmann@users.noreply.github.com> Date: Sun, 7 Jul 2024 22:42:35 +0200 Subject: [PATCH] Fix --disable-tls --- src/mod/pbkdf2.mod/pbkdf2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mod/pbkdf2.mod/pbkdf2.c b/src/mod/pbkdf2.mod/pbkdf2.c index 2eda85038..bcf0c61c6 100644 --- a/src/mod/pbkdf2.mod/pbkdf2.c +++ b/src/mod/pbkdf2.mod/pbkdf2.c @@ -8,9 +8,10 @@ */ #include "src/mod/module.h" -#include "src/mod/pbkdf2.mod/tclpbkdf2.c" #if OPENSSL_VERSION_NUMBER >= 0x1000000fL /* 1.0.0 */ +#include "src/mod/pbkdf2.mod/tclpbkdf2.c" + #define MODULE_NAME "encryption2" #include /* base64 encode b64_ntop() and base64 decode b64_pton() */