diff options
| author | tb <> | 2022-08-15 10:45:25 +0000 |
|---|---|---|
| committer | tb <> | 2022-08-15 10:45:25 +0000 |
| commit | 21e60823a109110f88c899aa61c9f14d7a76af32 (patch) | |
| tree | ab5225914a3c1319f070969a4506333e59fec943 /src | |
| parent | 5e4eb991d2b6a7c4534f72325c42c7920ba44676 (diff) | |
| download | openbsd-21e60823a109110f88c899aa61c9f14d7a76af32.tar.gz openbsd-21e60823a109110f88c899aa61c9f14d7a76af32.tar.bz2 openbsd-21e60823a109110f88c899aa61c9f14d7a76af32.zip | |
Remove redeclaration of ret
When ret was introduced in an outer scope in r1.113, this declaration
wasn't garbage collected.
ok jsing
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libssl/ssl_clnt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_clnt.c b/src/lib/libssl/ssl_clnt.c index 224aa1032f..1319684868 100644 --- a/src/lib/libssl/ssl_clnt.c +++ b/src/lib/libssl/ssl_clnt.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_clnt.c,v 1.151 2022/07/03 14:52:39 jsing Exp $ */ | 1 | /* $OpenBSD: ssl_clnt.c,v 1.152 2022/08/15 10:45:25 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 | * |
| @@ -1757,7 +1757,6 @@ ssl3_get_cert_status(SSL *s) | |||
| 1757 | } | 1757 | } |
| 1758 | 1758 | ||
| 1759 | if (s->ctx->internal->tlsext_status_cb) { | 1759 | if (s->ctx->internal->tlsext_status_cb) { |
| 1760 | int ret; | ||
| 1761 | ret = s->ctx->internal->tlsext_status_cb(s, | 1760 | ret = s->ctx->internal->tlsext_status_cb(s, |
| 1762 | s->ctx->internal->tlsext_status_arg); | 1761 | s->ctx->internal->tlsext_status_arg); |
| 1763 | if (ret == 0) { | 1762 | if (ret == 0) { |
