From 56474376dc3597960780d49e43ce9d9b67e31442 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Mon, 9 Apr 2007 12:06:26 +0000 Subject: [PATCH] If config file tries to enter FIPS mode in a non FIPS capable library return an error. --- crypto/evp/evp_cnf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/evp/evp_cnf.c b/crypto/evp/evp_cnf.c index 73b649e961..3881050c5a 100644 --- a/crypto/evp/evp_cnf.c +++ b/crypto/evp/evp_cnf.c @@ -101,6 +101,7 @@ static int alg_module_init(CONF_IMODULE *md, const CONF *cnf) } #else EVPerr(EVP_F_ALG_MODULE_INIT, EVP_R_FIPS_MODE_NOT_SUPPORTED); + return 0; #endif } } -- 2.25.1