diff options
author | tb <> | 2024-04-15 16:00:05 +0000 |
---|---|---|
committer | tb <> | 2024-04-15 16:00:05 +0000 |
commit | 3b2a7048cd8959d3f5cad3623105769edae26d26 (patch) | |
tree | 973272f7e56c74abc36f464f11073269b83ae5f1 | |
parent | 50fadfc274f686c67fe1d019704f62a1c8ac5028 (diff) | |
download | openbsd-3b2a7048cd8959d3f5cad3623105769edae26d26.tar.gz openbsd-3b2a7048cd8959d3f5cad3623105769edae26d26.tar.bz2 openbsd-3b2a7048cd8959d3f5cad3623105769edae26d26.zip |
Unexport SSL_version_str
ok jsing
-rw-r--r-- | src/lib/libssl/Symbols.list | 1 | ||||
-rw-r--r-- | src/lib/libssl/ssl_lib.c | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libssl/Symbols.list b/src/lib/libssl/Symbols.list index ee7477f31e..f5722846ac 100644 --- a/src/lib/libssl/Symbols.list +++ b/src/lib/libssl/Symbols.list | |||
@@ -338,7 +338,6 @@ SSL_use_certificate_chain_file | |||
338 | SSL_use_certificate_file | 338 | SSL_use_certificate_file |
339 | SSL_verify_client_post_handshake | 339 | SSL_verify_client_post_handshake |
340 | SSL_version | 340 | SSL_version |
341 | SSL_version_str | ||
342 | SSL_want | 341 | SSL_want |
343 | SSL_write | 342 | SSL_write |
344 | SSL_write_early_data | 343 | SSL_write_early_data |
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index 76a906f13a..d1b552d94f 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_lib.c,v 1.322 2024/03/27 06:47:52 tb Exp $ */ | 1 | /* $OpenBSD: ssl_lib.c,v 1.323 2024/04/15 16:00:05 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -161,8 +161,6 @@ | |||
161 | #include "ssl_tlsext.h" | 161 | #include "ssl_tlsext.h" |
162 | #include "tls12_internal.h" | 162 | #include "tls12_internal.h" |
163 | 163 | ||
164 | const char *SSL_version_str = OPENSSL_VERSION_TEXT; | ||
165 | |||
166 | int | 164 | int |
167 | SSL_clear(SSL *s) | 165 | SSL_clear(SSL *s) |
168 | { | 166 | { |