summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2017-07-14 18:35:36 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2017-07-14 18:35:36 +0200
commit2f0af52b423368e8fa7a6f532f945812e88c809d (patch)
tree14dcf0bd80a670a0b3c663d855969c0ce53c28bb /crypto/evp
parent190909aaabf1d8abf48b0c92a9d425c8f0bd2481 (diff)
Fix gcc-7 warnings about missing fall thru comments.
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3936)
Diffstat (limited to 'crypto/evp')
-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 17822f20ef..fe52213eab 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -1978,6 +1978,7 @@ static int aes_ccm_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr)
case EVP_CTRL_AEAD_SET_IVLEN:
arg = 15 - arg;
+ /* fall thru */
case EVP_CTRL_CCM_SET_L:
if (arg < 2 || arg > 8)
return 0;