Displaying 1 result from an estimated 1 matches for "ipt_inv_via_out".
2003 Dec 26
2
[Bug 84] Unaligned access in ip_tables.c:ip_packet_match
...tdev)[i]
- ^ ((const unsigned long *)ipinfo->outiface)[i])
- & ((const unsigned long *)ipinfo->outiface_mask)[i];
- }
+ for (i = 0, ret = 0; i < IFNAMSIZ; i++) {
+ ret |= (outdev[i]
+ ^ ipinfo->outiface[i])
+ & ipinfo->outiface_mask[i];
+ }
if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
dprintf("VIA out mismatch (%s vs %s).%s\n",
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.