diff options
author | tb <> | 2023-05-04 20:15:27 +0000 |
---|---|---|
committer | tb <> | 2023-05-04 20:15:27 +0000 |
commit | ac3a45c919d4bd970c6ae1d7906447867a37a12a (patch) | |
tree | 91346881eb88f64c6cafac5aaf14aacfd061cbdc /src | |
parent | e3c1dd7076a51b72841ed695f4e5ef951ed13317 (diff) | |
download | openbsd-ac3a45c919d4bd970c6ae1d7906447867a37a12a.tar.gz openbsd-ac3a45c919d4bd970c6ae1d7906447867a37a12a.tar.bz2 openbsd-ac3a45c919d4bd970c6ae1d7906447867a37a12a.zip |
symbols.awk: Remove cfb dance
With e_old.c gone, we no longer need this.
Diffstat (limited to 'src')
-rw-r--r-- | src/regress/lib/libcrypto/symbols/symbols.awk | 6 |
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 | ||
124 | END { | 122 | END { |