1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

symbols.awk: Remove cfb dance

With e_old.c gone, we no longer need this.
This commit is contained in:
tb 2023-05-04 20:15:27 +00:00
parent 6e6e8eee19
commit e253a7cc21

View 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 {