From 3f6e891d423ed911eb779bfd1401a26ec18cfa41 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 13 Jan 2021 23:55:51 +0100 Subject: Fix crypto/des/build.info !$disabled{mdc2} was used to determine if DES files should be included in providers/liblegacy.a. Use !$disabled{des} instead. Fixes #13865 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/13866) --- crypto/des/build.info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/des/build.info b/crypto/des/build.info index b73e740bec..ad8553a41a 100644 --- a/crypto/des/build.info +++ b/crypto/des/build.info @@ -31,7 +31,7 @@ DEFINE[../../providers/liblegacy.a]=$DESDEF # When all deprecated symbols are removed, libcrypto doesn't export the # DES functions, so we must include them directly in liblegacy.a -IF[{- $disabled{'deprecated-3.0'} && !$disabled{"mdc2"} -}] +IF[{- $disabled{'deprecated-3.0'} && !$disabled{des} -}] SOURCE[../../providers/liblegacy.a]=$ALL DEFINE[../../providers/liblegacy.a]=$DESDEF ENDIF -- cgit v1.2.3