summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2024-02-03 17:39:17 +0000
committertb <>2024-02-03 17:39:17 +0000
commitd5f968871ebb290a1b4c22e23971f801a8ba64ca (patch)
treef3a744f27197c37ef652ab731e078c945872d51a
parentfeaf10d0a7eb5e59e69c058b10c91c45d2b1b0e3 (diff)
downloadopenbsd-d5f968871ebb290a1b4c22e23971f801a8ba64ca.tar.gz
openbsd-d5f968871ebb290a1b4c22e23971f801a8ba64ca.tar.bz2
openbsd-d5f968871ebb290a1b4c22e23971f801a8ba64ca.zip
Zap a trailing blank that snuck into ssl3_get_client_hello()
-rw-r--r--src/lib/libssl/ssl_srvr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_srvr.c b/src/lib/libssl/ssl_srvr.c
index 117afac85e..6d61a4e4fa 100644
--- a/src/lib/libssl/ssl_srvr.c
+++ b/src/lib/libssl/ssl_srvr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_srvr.c,v 1.159 2024/02/03 15:58:34 beck Exp $ */ 1/* $OpenBSD: ssl_srvr.c,v 1.160 2024/02/03 17:39:17 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 *
@@ -1126,7 +1126,7 @@ ssl3_get_client_hello(SSL *s)
1126 goto err; 1126 goto err;
1127 1127
1128 if (!SSL_USE_SIGALGS(s) || !(s->verify_mode & SSL_VERIFY_PEER)) 1128 if (!SSL_USE_SIGALGS(s) || !(s->verify_mode & SSL_VERIFY_PEER))
1129 tls1_transcript_free(s); 1129 tls1_transcript_free(s);
1130 1130
1131 /* 1131 /*
1132 * We now have the following setup. 1132 * We now have the following setup.