summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libssl/ssl_lib.c4
-rw-r--r--src/lib/libssl/tls13_handshake_msg.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c
index 0277202de3..3d7810a361 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.319 2024/02/03 15:58:34 beck Exp $ */ 1/* $OpenBSD: ssl_lib.c,v 1.320 2024/02/04 20:50:23 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 *
@@ -1068,7 +1068,7 @@ SSL_is_server(const SSL *s)
1068LSSL_ALIAS(SSL_is_server); 1068LSSL_ALIAS(SSL_is_server);
1069 1069
1070static long 1070static long
1071ssl_get_default_timeout() 1071ssl_get_default_timeout(void)
1072{ 1072{
1073 /* 1073 /*
1074 * 2 hours, the 24 hours mentioned in the TLSv1 spec 1074 * 2 hours, the 24 hours mentioned in the TLSv1 spec
diff --git a/src/lib/libssl/tls13_handshake_msg.c b/src/lib/libssl/tls13_handshake_msg.c
index 134cfb2173..c7f4d7b7ec 100644
--- a/src/lib/libssl/tls13_handshake_msg.c
+++ b/src/lib/libssl/tls13_handshake_msg.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_handshake_msg.c,v 1.6 2022/07/22 19:33:53 jsing Exp $ */ 1/* $OpenBSD: tls13_handshake_msg.c,v 1.7 2024/02/04 20:50:23 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -34,7 +34,7 @@ struct tls13_handshake_msg {
34}; 34};
35 35
36struct tls13_handshake_msg * 36struct tls13_handshake_msg *
37tls13_handshake_msg_new() 37tls13_handshake_msg_new(void)
38{ 38{
39 struct tls13_handshake_msg *msg = NULL; 39 struct tls13_handshake_msg *msg = NULL;
40 40