From e253a7cc21de530da6fcf49c1279258fecade8f4 Mon Sep 17 00:00:00 2001 From: tb Date: Thu, 4 May 2023 20:15:27 +0000 Subject: [PATCH] symbols.awk: Remove cfb dance With e_old.c gone, we no longer need this. --- regress/lib/libcrypto/symbols/symbols.awk | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/regress/lib/libcrypto/symbols/symbols.awk b/regress/lib/libcrypto/symbols/symbols.awk index 9d7f5ceeeb8..c5ae770708e 100644 --- a/regress/lib/libcrypto/symbols/symbols.awk +++ b/regress/lib/libcrypto/symbols/symbols.awk @@ -1,4 +1,4 @@ -# $OpenBSD: symbols.awk,v 1.7 2022/09/21 15:24:45 tb Exp $ +# $OpenBSD: symbols.awk,v 1.8 2023/05/04 20:15:27 tb Exp $ # Copyright (c) 2018,2020 Theo Buehler # @@ -116,9 +116,7 @@ BEGIN { symbols[$0] = $0 # Undefine aliases, so we don't accidentally leave them in Symbols.list. - # The _cfb ciphers are aliased to _cfb64, so skip them. - if ($0 !~ "^EVP_.*cfb$") - printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0) + printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0) } END { -- 2.20.1