mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
we really need htonl() here, see the comment a few lines above in the code.
This commit is contained in:
parent
01d716fc66
commit
bcd3b68dd2
1 changed files with 1 additions and 1 deletions
|
|
@ -1377,7 +1377,7 @@ do { \
|
|||
else if (v == 2)
|
||||
key = htonl(dst_port);
|
||||
else if (v == 3)
|
||||
key = htons(src_port);
|
||||
key = htonl(src_port);
|
||||
else if (v == 4 || v == 5) {
|
||||
check_uidgid(
|
||||
(ipfw_insn_u32 *)cmd,
|
||||
|
|
|
|||
Loading…
Reference in a new issue