diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-02-04 20:50:24 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-02-04 20:50:24 +0000 |
commit | fe589f96e7dba98db743ccf8d2004cf84970806b (patch) | |
tree | 7853197597d0c3d4da1ccf710d4b4a61387910f3 /lib/libssl | |
parent | 76c1f761c8f4607e603ae6463e56703970a35aa8 (diff) |
Of course libssl also has a few missing void
From Christian Andersen
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/ssl_lib.c | 4 | ||||
-rw-r--r-- | lib/libssl/tls13_handshake_msg.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/ssl_lib.c b/lib/libssl/ssl_lib.c index 0277202de3b..3d7810a361e 100644 --- a/lib/libssl/ssl_lib.c +++ b/lib/libssl/ssl_lib.c @@ -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 diff --git a/lib/libssl/tls13_handshake_msg.c b/lib/libssl/tls13_handshake_msg.c index 134cfb21739..c7f4d7b7ec3 100644 --- a/lib/libssl/tls13_handshake_msg.c +++ b/lib/libssl/tls13_handshake_msg.c @@ -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; |