From: Arran Cudbard-Bell Date: Mon, 3 Jan 2022 21:22:57 +0000 (-0600) Subject: We use OPENSSL_VERSION_NUMBER everywhere else... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c466876360e43c9eb6475143c8410ab57781f1d;p=thirdparty%2Ffreeradius-server.git We use OPENSSL_VERSION_NUMBER everywhere else... --- diff --git a/src/lib/tls/engine.c b/src/lib/tls/engine.c index 9a86e669ec..c0d0d2333a 100644 --- a/src/lib/tls/engine.c +++ b/src/lib/tls/engine.c @@ -482,7 +482,7 @@ void fr_tls_engine_free_all(void) { TALLOC_FREE(tls_engines); -#if OPENSSL_API_COMPAT < 0x10100000L +#if OPENSSL_VERSION_NUMBER < 0x10100000L /* * Free any lingering memory * OpenSSL man pages say to do this.