From c4782e9e541cdac7c8495b531e2ed2b2068f4813 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 28 Jun 2021 18:42:17 +0000 Subject: [PATCH] ctx->alert is not a boolean, so compare it explicitly against 0. --- lib/libssl/tls13_handshake.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libssl/tls13_handshake.c b/lib/libssl/tls13_handshake.c index 578cea338f9..4e4a9101d0c 100644 --- a/lib/libssl/tls13_handshake.c +++ b/lib/libssl/tls13_handshake.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls13_handshake.c,v 1.66 2021/06/28 15:35:14 tb Exp $ */ +/* $OpenBSD: tls13_handshake.c,v 1.67 2021/06/28 18:42:17 tb Exp $ */ /* * Copyright (c) 2018-2019 Theo Buehler * Copyright (c) 2019 Joel Sing @@ -383,7 +383,7 @@ tls13_handshake_perform(struct tls13_ctx *ctx) (action->sender == ctx->mode) ? "sending" : "receiving", tls13_handshake_message_name(action->handshake_type)); - if (ctx->alert) + if (ctx->alert != 0) return tls13_send_alert(ctx->rl, ctx->alert); if (action->sender == ctx->mode) @@ -391,7 +391,7 @@ tls13_handshake_perform(struct tls13_ctx *ctx) else ret = tls13_handshake_recv_action(ctx, action); - if (ctx->alert) + if (ctx->alert != 0) return tls13_send_alert(ctx->rl, ctx->alert); if (ret <= 0) { -- 2.20.1