diff options
author | Dave Watson <davejwatson@fb.com> | 2018-03-22 10:10:26 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-23 12:25:54 -0400 |
commit | 583715853a25b4f2720b847e4fb8e37727299152 (patch) | |
tree | ba2387166d50822b9b61bedafc6f85335006ee4c /include/net/tls.h | |
parent | f4a8e43f1f0abc0e93ed5ee132288ee4142afde1 (diff) |
tls: Refactor variable names
Several config variables are prefixed with tx, drop the prefix
since these will be used for both tx and rx.
Signed-off-by: Dave Watson <davejwatson@fb.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tls.h')
-rw-r--r-- | include/net/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tls.h b/include/net/tls.h index 6b44875a78e5..095b72283861 100644 --- a/include/net/tls.h +++ b/include/net/tls.h @@ -99,7 +99,7 @@ struct tls_context { void *priv_ctx; - u8 tx_conf:2; + u8 conf:2; struct cipher_context tx; |