summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_aes.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2014-06-04 08:33:06 +0200
committerAndy Polyakov <appro@openssl.org>2014-06-04 08:33:06 +0200
commit53a224bb0ab6c7d0d509141638f7820b859d0ade (patch)
treef0037874b0bb8e2d033de7a3068458900d02d1ef /crypto/evp/e_aes.c
parent8e3231642b89332fa56ed2b6f501e28722e2048e (diff)
evp/e_aes.c: add erroneously omitted break;
Diffstat (limited to 'crypto/evp/e_aes.c')
-rw-r--r--crypto/evp/e_aes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index 7c69976d63..a0368d99a3 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -1322,6 +1322,7 @@ static int aes_gcm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
#else
gctx->ctr = NULL;
#endif
+ break;
}
else
#endif