From: Bernd Edlinger Date: Wed, 14 Feb 2018 20:30:32 +0000 (+0100) Subject: Fix a gcc warning about possible fall through X-Git-Tag: OpenSSL_1_1_1-pre2~143 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=4d921bfb8b4161f735e5d3bc19fae264816c9c40;hp=c3d76bb254eb33dbe2cd23e00f5f135f3c12381c;ds=inline Fix a gcc warning about possible fall through Reviewed-by: Tim Hudson Reviewed-by: Kurt Roeckx (Merged from https://github.com/openssl/openssl/pull/5373) --- diff --git a/test/handshake_helper.c b/test/handshake_helper.c index 16d2d7318d..c0265ab3c0 100644 --- a/test/handshake_helper.c +++ b/test/handshake_helper.c @@ -1155,6 +1155,7 @@ static handshake_status_t handshake_status(peer_status_t last_status, */ return INTERNAL_ERROR; } + break; case PEER_RETRY: return HANDSHAKE_RETRY;