Of course libssl also has a few missing void
authortb <tb@openbsd.org>
Sun, 4 Feb 2024 20:50:23 +0000 (20:50 +0000)
committertb <tb@openbsd.org>
Sun, 4 Feb 2024 20:50:23 +0000 (20:50 +0000)
From Christian Andersen

lib/libssl/ssl_lib.c
lib/libssl/tls13_handshake_msg.c

index 0277202..3d7810a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_lib.c,v 1.319 2024/02/03 15:58:34 beck Exp $ */
+/* $OpenBSD: ssl_lib.c,v 1.320 2024/02/04 20:50:23 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -1068,7 +1068,7 @@ SSL_is_server(const SSL *s)
 LSSL_ALIAS(SSL_is_server);
 
 static long
-ssl_get_default_timeout()
+ssl_get_default_timeout(void)
 {
        /*
         * 2 hours, the 24 hours mentioned in the TLSv1 spec
index 134cfb2..c7f4d7b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tls13_handshake_msg.c,v 1.6 2022/07/22 19:33:53 jsing Exp $ */
+/* $OpenBSD: tls13_handshake_msg.c,v 1.7 2024/02/04 20:50:23 tb Exp $ */
 /*
  * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
  *
@@ -34,7 +34,7 @@ struct tls13_handshake_msg {
 };
 
 struct tls13_handshake_msg *
-tls13_handshake_msg_new()
+tls13_handshake_msg_new(void)
 {
        struct tls13_handshake_msg *msg = NULL;