diff options
author | Sabrina Dubroca <sd@queasysnail.net> | 2023-10-09 22:50:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-10-13 11:26:09 +0100 |
commit | bee6b7b30706e7693d91cb28c8ff3cb69e094f65 (patch) | |
tree | f471e5c0e1c6e578a24e014ede929e626dcd3b34 /net/tls/tls_main.c | |
parent | 6d5029e54700b2427581513c533232b02ce05043 (diff) | |
download | lwn-bee6b7b30706e7693d91cb28c8ff3cb69e094f65.tar.gz lwn-bee6b7b30706e7693d91cb28c8ff3cb69e094f65.zip |
tls: rename MAX_IV_SIZE to TLS_MAX_IV_SIZE
It's defined in include/net/tls.h, avoid using an overly generic name.
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tls/tls_main.c')
-rw-r--r-- | net/tls/tls_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c index f705d812fc36..58f13660fe6b 100644 --- a/net/tls/tls_main.c +++ b/net/tls/tls_main.c @@ -59,7 +59,7 @@ enum { }; #define CHECK_CIPHER_DESC(cipher,ci) \ - static_assert(cipher ## _IV_SIZE <= MAX_IV_SIZE); \ + static_assert(cipher ## _IV_SIZE <= TLS_MAX_IV_SIZE); \ static_assert(cipher ## _REC_SEQ_SIZE <= TLS_MAX_REC_SEQ_SIZE); \ static_assert(cipher ## _TAG_SIZE == TLS_TAG_SIZE); \ static_assert(sizeof_field(struct ci, iv) == cipher ## _IV_SIZE); \ |