From 48ad955fc5f0e19acbc8acaa100af6526bc6b158 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Fri, 15 Dec 2017 23:54:44 +0100 Subject: [PATCH] Fix a gcc fallthru warning Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4941) --- test/handshake_helper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/handshake_helper.c b/test/handshake_helper.c index bb042bec50..0a19f59ce4 100644 --- a/test/handshake_helper.c +++ b/test/handshake_helper.c @@ -804,6 +804,7 @@ static handshake_status_t handshake_status(peer_status_t last_status, */ return INTERNAL_ERROR; } + break; case PEER_RETRY: if (previous_status == PEER_RETRY) { -- 2.25.1