diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-17 22:48:18 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-17 22:48:18 +0000 |
commit | b8b88ff4981b12c6ae34a04dc9965e3a48327e6f (patch) | |
tree | 0c70d3986959a6a19e4ff6bbcb4b7863c884f316 /regress | |
parent | c5bee0509ab4aeea8851581c92f63deecca66db2 (diff) |
SSL_version_str is no more
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/symbols/symbols.awk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/regress/lib/libssl/symbols/symbols.awk b/regress/lib/libssl/symbols/symbols.awk index a847ade6d3f..adf8716cc36 100644 --- a/regress/lib/libssl/symbols/symbols.awk +++ b/regress/lib/libssl/symbols/symbols.awk @@ -1,4 +1,4 @@ -# $OpenBSD: symbols.awk,v 1.2 2023/07/19 21:01:29 tb Exp $ +# $OpenBSD: symbols.awk,v 1.3 2024/04/17 22:48:17 tb Exp $ # Copyright (c) 2018,2020,2023 Theo Buehler <tb@openbsd.org> # @@ -29,10 +29,6 @@ BEGIN { printf("#include <openssl/srtp.h>\n\n") # depends on ssl.h } -/^SSL_version_str$/ { - printf("extern const char *%s;\n", $0) -} - { symbols[$0] = $0 |