diff options
author | Casey Schaufler <casey@schaufler-ca.com> | 2022-03-01 02:45:32 +0300 |
---|---|---|
committer | Casey Schaufler <casey@schaufler-ca.com> | 2022-03-01 02:45:32 +0300 |
commit | a5cd1ab7ab679d252a6d2f483eee7d45ebf2040c (patch) | |
tree | 5e0a62e8c1fbddcb0bd3dcc9ac86344252f3163c /security/smack | |
parent | e783362eb54cd99b2cac8b3a9aeac942e6f6ac07 (diff) | |
download | linux-a5cd1ab7ab679d252a6d2f483eee7d45ebf2040c.tar.xz |
Fix incorrect type in assignment of ipv6 port for audit
Remove inappropriate use of ntohs() and assign the
port value directly.
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smack_lsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c index 14b279cc75c9..6207762dbdb1 100644 --- a/security/smack/smack_lsm.c +++ b/security/smack/smack_lsm.c @@ -2510,7 +2510,7 @@ static int smk_ipv6_check(struct smack_known *subject, #ifdef CONFIG_AUDIT smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net); ad.a.u.net->family = PF_INET6; - ad.a.u.net->dport = ntohs(address->sin6_port); + ad.a.u.net->dport = address->sin6_port; if (act == SMK_RECEIVING) ad.a.u.net->v6info.saddr = address->sin6_addr; else |