diff options
| author | tb <> | 2026-06-04 18:02:52 +0000 |
|---|---|---|
| committer | tb <> | 2026-06-04 18:02:52 +0000 |
| commit | a4bda5c70b985f1c4cca40b239aa5324c5a22a83 (patch) | |
| tree | 940c7e5aa0a804e3eec851dfdf99637c64e690c1 /src/lib/libssl | |
| parent | f7aa9e9ab865860ef489999bdcd0737e5cb3bc46 (diff) | |
| download | openbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.tar.gz openbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.tar.bz2 openbsd-a4bda5c70b985f1c4cca40b239aa5324c5a22a83.zip | |
Drop gcc3 -Wunininitialized workaround
discussed with miod
Diffstat (limited to 'src/lib/libssl')
| -rw-r--r-- | src/lib/libssl/t1_lib.c | 4 |
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 | |||
| 788 | ssl_check_clienthello_tlsext_late(SSL *s) | 788 | ssl_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 |
