From: Alan T. DeKok Date: Mon, 11 Aug 2025 14:47:34 +0000 (-0400) Subject: change "fips=no" to "-fips" X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fv3.0.x;p=thirdparty%2Ffreeradius-server.git change "fips=no" to "-fips" based on discussions with the OpenSSL developers in https://github.com/FreeRADIUS/freeradius-server/issues/5631 and https://docs.openssl.org/3.5/man7/property/#global-and-local --- diff --git a/src/main/tls.c b/src/main/tls.c index 5975e2a7dd..233978ebcd 100644 --- a/src/main/tls.c +++ b/src/main/tls.c @@ -3623,7 +3623,7 @@ int tls_global_init(TLS_UNUSED bool spawn_flag, TLS_UNUSED bool check) CONF_modules_load_file(NULL, NULL, 0); #if OPENSSL_VERSION_NUMBER >= 0x30000000L - EVP_set_default_properties(NULL, "fips=no"); + EVP_set_default_properties(NULL, "-fips"); #endif /*