Skip to content

Commit a5cd1ab

Browse files
committed
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>
1 parent e783362 commit a5cd1ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

security/smack/smack_lsm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ static int smk_ipv6_check(struct smack_known *subject,
25102510
#ifdef CONFIG_AUDIT
25112511
smk_ad_init_net(&ad, __func__, LSM_AUDIT_DATA_NET, &net);
25122512
ad.a.u.net->family = PF_INET6;
2513-
ad.a.u.net->dport = ntohs(address->sin6_port);
2513+
ad.a.u.net->dport = address->sin6_port;
25142514
if (act == SMK_RECEIVING)
25152515
ad.a.u.net->v6info.saddr = address->sin6_addr;
25162516
else

0 commit comments

Comments
 (0)