From 2f05c96004f14b735b9930922257035929974885 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Thu, 28 Apr 2016 11:33:29 -0700 Subject: [PATCH] added braces to else clause for compiler warning differences --- src/internal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/internal.c b/src/internal.c index 31ff1879e..125ea02e6 100755 --- a/src/internal.c +++ b/src/internal.c @@ -4067,9 +4067,9 @@ static int GetDtlsHandShakeHeader(WOLFSSL* ssl, const byte* input, if (*type != client_hello && *type != hello_verify_request) return VERSION_ERROR; - else - WOLFSSL_MSG("DTLS Handshake ignoring hello or " - "hello verify version"); + else { + WOLFSSL_MSG("DTLS Handshake ignoring hello or verify version"); + } } return 0; }