From 1d30b0a4ada5707e10ee9a94ca4acd2e45004d01 Mon Sep 17 00:00:00 2001 From: "Dr. Matthias St. Pierre" Date: Sun, 13 Sep 2020 00:17:35 +0200 Subject: [PATCH] prov/drbg: fix misspelling of '#ifdef FIPS_MODULE' Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/12866) --- providers/implementations/rands/drbg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/implementations/rands/drbg.c b/providers/implementations/rands/drbg.c index 5d364b1a21d..08f34725614 100644 --- a/providers/implementations/rands/drbg.c +++ b/providers/implementations/rands/drbg.c @@ -587,7 +587,7 @@ int PROV_DRBG_reseed(PROV_DRBG *drbg, int prediction_resistance, } if (ent != NULL) { -#ifdef FIP_MODULE +#ifdef FIPS_MODULE /* * NIST SP-800-90A mandates that entropy *shall not* be provided * by the consuming application. Instead the data is added as additional -- 2.47.2