symbols.awk: Remove cfb dance
authortb <tb@openbsd.org>
Thu, 4 May 2023 20:15:27 +0000 (20:15 +0000)
committertb <tb@openbsd.org>
Thu, 4 May 2023 20:15:27 +0000 (20:15 +0000)
With e_old.c gone, we no longer need this.

regress/lib/libcrypto/symbols/symbols.awk

index 9d7f5ce..c5ae770 100644 (file)
@@ -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 <tb@openbsd.org>
 #
@@ -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 {