From: tb Date: Mon, 15 Aug 2022 10:45:25 +0000 (+0000) Subject: Remove redeclaration of ret X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=40f5d299d988a8aa308e3b106836512a9cfd70da;p=openbsd Remove redeclaration of ret When ret was introduced in an outer scope in r1.113, this declaration wasn't garbage collected. ok jsing --- diff --git a/lib/libssl/ssl_clnt.c b/lib/libssl/ssl_clnt.c index 224aa1032fb..13196848681 100644 --- a/lib/libssl/ssl_clnt.c +++ b/lib/libssl/ssl_clnt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_clnt.c,v 1.151 2022/07/03 14:52:39 jsing Exp $ */ +/* $OpenBSD: ssl_clnt.c,v 1.152 2022/08/15 10:45:25 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1757,7 +1757,6 @@ ssl3_get_cert_status(SSL *s) } if (s->ctx->internal->tlsext_status_cb) { - int ret; ret = s->ctx->internal->tlsext_status_cb(s, s->ctx->internal->tlsext_status_arg); if (ret == 0) {