summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2026-06-04 18:02:52 +0000
committertb <>2026-06-04 18:02:52 +0000
commita4bda5c70b985f1c4cca40b239aa5324c5a22a83 (patch)
tree940c7e5aa0a804e3eec851dfdf99637c64e690c1 /src
parentf7aa9e9ab865860ef489999bdcd0737e5cb3bc46 (diff)
downloadopenbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.tar.gz
openbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.tar.bz2
openbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.zip
Drop gcc3 -Wunininitialized workaround
discussed with miod
Diffstat (limited to 'src')
-rw-r--r--src/lib/libssl/t1_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/t1_lib.c b/src/lib/libssl/t1_lib.c
index 912bea592a..9947dcba1d 100644
--- a/src/lib/libssl/t1_lib.c
+++ b/src/lib/libssl/t1_lib.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: t1_lib.c,v 1.207 2025/12/04 21:16:17 beck Exp $ */ 1/* $OpenBSD: t1_lib.c,v 1.208 2026/06/04 18:02:52 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 *
@@ -788,7 +788,7 @@ int
788ssl_check_clienthello_tlsext_late(SSL *s) 788ssl_check_clienthello_tlsext_late(SSL *s)
789{ 789{
790 int ret = SSL_TLSEXT_ERR_OK; 790 int ret = SSL_TLSEXT_ERR_OK;
791 int al = 0; /* XXX gcc3 */ 791 int al;
792 792
793 /* If status request then ask callback what to do. 793 /* If status request then ask callback what to do.
794 * Note: this must be called after servername callbacks in case 794 * Note: this must be called after servername callbacks in case