|
@@ -102,7 +102,7 @@ ip_packet_match(const struct iphdr *ip,
|
|
|
if (FWINV(ret != 0, IPT_INV_VIA_IN)) {
|
|
|
dprintf("VIA in mismatch (%s vs %s).%s\n",
|
|
|
indev, ipinfo->iniface,
|
|
|
- ipinfo->invflags&IPT_INV_VIA_IN ?" (INV)":"");
|
|
|
+ ipinfo->invflags & IPT_INV_VIA_IN ? " (INV)" : "");
|
|
|
return false;
|
|
|
}
|
|
|
|
|
@@ -111,7 +111,7 @@ ip_packet_match(const struct iphdr *ip,
|
|
|
if (FWINV(ret != 0, IPT_INV_VIA_OUT)) {
|
|
|
dprintf("VIA out mismatch (%s vs %s).%s\n",
|
|
|
outdev, ipinfo->outiface,
|
|
|
- ipinfo->invflags&IPT_INV_VIA_OUT ?" (INV)":"");
|
|
|
+ ipinfo->invflags & IPT_INV_VIA_OUT ? " (INV)" : "");
|
|
|
return false;
|
|
|
}
|
|
|
|
|
@@ -120,7 +120,7 @@ ip_packet_match(const struct iphdr *ip,
|
|
|
FWINV(ip->protocol != ipinfo->proto, IPT_INV_PROTO)) {
|
|
|
dprintf("Packet protocol %hi does not match %hi.%s\n",
|
|
|
ip->protocol, ipinfo->proto,
|
|
|
- ipinfo->invflags&IPT_INV_PROTO ? " (INV)":"");
|
|
|
+ ipinfo->invflags & IPT_INV_PROTO ? " (INV)" : "");
|
|
|
return false;
|
|
|
}
|
|
|
|