From ac92d3095509788025743e46c2caa035d1d55dc9 Mon Sep 17 00:00:00 2001 From: toddouska Date: Thu, 17 May 2012 07:55:25 -0700 Subject: [PATCH] fix else braces --- src/internal.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 2f1e2e72c..1b0624cec 100644 --- a/src/internal.c +++ b/src/internal.c @@ -4240,9 +4240,10 @@ int SetCipherList(Suites* s, const char* list) ssl->options.serverState = SERVER_HELLODONE_COMPLETE; return ret; } - else + else { CYASSL_MSG("Unsupported cipher suite, DoServerHello"); return UNSUPPORTED_SUITE; + } } else { CYASSL_MSG("Server denied resumption attempt");