summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libcrypto/symbols/symbols.awk6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/symbols/symbols.awk b/src/regress/lib/libcrypto/symbols/symbols.awk
index 9d7f5ceeeb..c5ae770708 100644
--- a/src/regress/lib/libcrypto/symbols/symbols.awk
+++ b/src/regress/lib/libcrypto/symbols/symbols.awk
@@ -1,4 +1,4 @@
1# $OpenBSD: symbols.awk,v 1.7 2022/09/21 15:24:45 tb Exp $ 1# $OpenBSD: symbols.awk,v 1.8 2023/05/04 20:15:27 tb Exp $
2 2
3# Copyright (c) 2018,2020 Theo Buehler <tb@openbsd.org> 3# Copyright (c) 2018,2020 Theo Buehler <tb@openbsd.org>
4# 4#
@@ -116,9 +116,7 @@ BEGIN {
116 symbols[$0] = $0 116 symbols[$0] = $0
117 117
118 # Undefine aliases, so we don't accidentally leave them in Symbols.list. 118 # Undefine aliases, so we don't accidentally leave them in Symbols.list.
119 # The _cfb ciphers are aliased to _cfb64, so skip them. 119 printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0)
120 if ($0 !~ "^EVP_.*cfb$")
121 printf("#ifdef %s\n#undef %s\n#endif\n", $0, $0)
122} 120}
123 121
124END { 122END {