Fix an arguments order in check_uidgid() call.

PR:		kern/59314
Submitted by:	Andrey V. Shytov
Approved by:	re (rwatson, jhb)
This commit is contained in:
Maxim Konovalov 2003-11-20 10:28:33 +00:00
parent 94b4c9762f
commit dbf7b38125

View File

@ -1653,8 +1653,8 @@ ipfw_chk(struct ip_fw_args *args)
match = check_uidgid(
(ipfw_insn_u32 *)cmd,
proto, oif,
src_ip, src_port,
dst_ip, dst_port);
dst_ip, dst_port,
src_ip, src_port);
break;
case O_RECV: