summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-04-04 13:28:40 +0200
committerJan Engelhardt <jengelh@medozas.de>2009-04-04 13:38:10 +0200
commitb1d968c30dde563c2738fdacb723c18232fb5ccb (patch)
tree4b02cb692a025cb189e101b13e468fc209d56b0c /iptables.c
parent9c0fa7d8c84dc2478bd36d31b328b697fbe4d0af (diff)
iptables: print negation extrapositioned
This patch combines the two referenced ones by Peter. I did a quick extra audit to spot and fix the missing ip6tables parts. (People like to forget ip6tables it seems.) Extension modules were, to the best of my knowledge, already audited in v1.4.3-rc1-10-gcea9f71. Reported-by: Yar Odin <yarodin@gmail.com> References: http://bugs.gentoo.org/264089 Reported-by: Peter Volkov <pva@gentoo.org> References: http://marc.info/?l=netfilter-devel&m=123883867907935&w=2 References: http://marc.info/?l=netfilter-devel&m=123883992508943&w=2 Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/iptables.c b/iptables.c
index 3449decd..649baf4c 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1006,18 +1006,18 @@ static void print_proto(u_int16_t proto, int invert)
struct protoent *pent = getprotobynumber(proto);
if (pent) {
- printf("-p %s%s ", invertstr, pent->p_name);
+ printf("%s-p %s ", invertstr, pent->p_name);
return;
}
for (i = 0; xtables_chain_protos[i].name != NULL; ++i)
if (xtables_chain_protos[i].num == proto) {
- printf("-p %s%s ",
+ printf("%s-p %s ",
invertstr, xtables_chain_protos[i].name);
return;
}
- printf("-p %s%u ", invertstr, proto);
+ printf("%s-p %u ", invertstr, proto);
}
}
@@ -1039,7 +1039,7 @@ print_iface(char letter, const char *iface, const unsigned char *mask,
if (mask[0] == 0)
return;
- printf("-%c %s", letter, invert ? "! " : "");
+ printf("%s-%c ", invert ? "! " : "", letter);
for (i = 0; i < IFNAMSIZ; i++) {
if (mask[i] != 0) {
@@ -1089,9 +1089,9 @@ static void print_ip(char *prefix, u_int32_t ip, u_int32_t mask, int invert)
if (!mask && !ip && !invert)
return;
- printf("%s %s%u.%u.%u.%u",
- prefix,
+ printf("%s%s %u.%u.%u.%u",
invert ? "! " : "",
+ prefix,
IP_PARTS(ip));
if (mask == 0xFFFFFFFFU) {