From 7d4a5a6ec8483206a6953a123b914114de4f10bf Mon Sep 17 00:00:00 2001 From: John Safranek Date: Mon, 26 Nov 2012 21:49:31 -0800 Subject: [PATCH] added a missed break to a switch case --- ctaocrypt/src/hmac.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ctaocrypt/src/hmac.c b/ctaocrypt/src/hmac.c index 42335def6..af69368bf 100644 --- a/ctaocrypt/src/hmac.c +++ b/ctaocrypt/src/hmac.c @@ -279,6 +279,7 @@ void HmacFinal(Hmac* hmac, byte* hash) Sha384Final(&hmac->hash.sha384, hash); } + break; #endif default: