From f89628b1282b775508680ffdbc8c2ac212544ec9 Mon Sep 17 00:00:00 2001 From: Timothy Legge Date: Wed, 29 Oct 2025 18:41:17 -0300 Subject: [PATCH] Fix logical AND operator --- RSA.xs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RSA.xs b/RSA.xs index 1dd5680..e3b3c27 100644 --- a/RSA.xs +++ b/RSA.xs @@ -10,7 +10,7 @@ #include #include #include -#if OPENSSL_VERSION_NUMBER >= 0x10000000 & OPENSSL_VERSION_NUMBER < 0x30000000 +#if OPENSSL_VERSION_NUMBER >= 0x10000000 && OPENSSL_VERSION_NUMBER < 0x30000000 #ifndef LIBRESSL_VERSION_NUMBER #include #endif