diff options
author | Jorgen Lundman <[email protected]> | 2022-02-16 01:58:59 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-15 08:58:59 -0800 |
commit | 9a70e97fe14addacdc4139fd0ae4bce1c3344456 (patch) | |
tree | 25eab04b16e2018fa68e09951f405c5484b1a669 /module/icp/io/aes.c | |
parent | ae07fc1393062507b62d9d475e57393be590e432 (diff) |
Rename fallthrough to zfs_fallthrough
Unfortunately macOS has obj-C keyword "fallthrough" in the OS headers.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Damian Szuberski <[email protected]>
Signed-off-by: Jorgen Lundman <[email protected]>
Closes #13097
Diffstat (limited to 'module/icp/io/aes.c')
-rw-r--r-- | module/icp/io/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/icp/io/aes.c b/module/icp/io/aes.c index be1736864..e1bd17335 100644 --- a/module/icp/io/aes.c +++ b/module/icp/io/aes.c @@ -952,7 +952,7 @@ aes_encrypt_atomic(crypto_provider_handle_t provider, case AES_GMAC_MECH_INFO_TYPE: if (plaintext->cd_length != 0) return (CRYPTO_ARGUMENTS_BAD); - fallthrough; + zfs_fallthrough; case AES_GCM_MECH_INFO_TYPE: length_needed = plaintext->cd_length + aes_ctx.ac_tag_len; break; |