Remove SSL_debug
authortb <tb@openbsd.org>
Sat, 2 Mar 2024 11:48:55 +0000 (11:48 +0000)
committertb <tb@openbsd.org>
Sat, 2 Mar 2024 11:48:55 +0000 (11:48 +0000)
The garbage truck is quite full by now. Collect the last symbol
straggler for this bump.

ok jsing

lib/libssl/Symbols.list
lib/libssl/hidden/openssl/ssl.h
lib/libssl/ssl.h
lib/libssl/ssl_lib.c

index 63aa8ff..ee7477f 100644 (file)
@@ -284,7 +284,6 @@ SSL_set_cipher_list
 SSL_set_ciphersuites
 SSL_set_client_CA_list
 SSL_set_connect_state
-SSL_set_debug
 SSL_set_ex_data
 SSL_set_fd
 SSL_set_generate_session_id
index e0fb898..aa946ad 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.5 2024/03/02 11:45:51 tb Exp $ */
+/* $OpenBSD: ssl.h,v 1.6 2024/03/02 11:48:55 tb Exp $ */
 /*
  * Copyright (c) 2023 Bob Beck <beck@openbsd.org>
  *
@@ -358,7 +358,6 @@ LSSL_USED(SSL_COMP_add_compression_method);
 LSSL_USED(SSL_set_session_ticket_ext);
 LSSL_USED(SSL_set_session_ticket_ext_cb);
 LSSL_USED(SSL_set_session_secret_cb);
-LSSL_USED(SSL_set_debug);
 LSSL_USED(SSL_cache_hit);
 LSSL_USED(SSL_set_security_level);
 LSSL_USED(SSL_get_security_level);
index e3f536a..9a5f8d0 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl.h,v 1.235 2024/03/02 11:45:51 tb Exp $ */
+/* $OpenBSD: ssl.h,v 1.236 2024/03/02 11:48:55 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -1496,7 +1496,6 @@ int SSL_set_session_ticket_ext_cb(SSL *s,
 int SSL_set_session_secret_cb(SSL *s,
     tls_session_secret_cb_fn tls_session_secret_cb, void *arg);
 
-void SSL_set_debug(SSL *s, int debug);
 int SSL_cache_hit(SSL *s);
 
 /* What the "other" parameter contains in security callback */
index 3d7810a..bb9779b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_lib.c,v 1.320 2024/02/04 20:50:23 tb Exp $ */
+/* $OpenBSD: ssl_lib.c,v 1.321 2024/03/02 11:48:55 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -3475,13 +3475,6 @@ SSL_set_msg_callback(SSL *ssl, void (*cb)(int write_p, int version,
 }
 LSSL_ALIAS(SSL_set_msg_callback);
 
-void
-SSL_set_debug(SSL *s, int debug)
-{
-       SSLerror(s, ERR_R_DISABLED);
-}
-LSSL_ALIAS(SSL_set_debug);
-
 int
 SSL_cache_hit(SSL *s)
 {