Displaying 1 result from an estimated 1 matches for "ipt_inv_dstip".
2003 May 29
0
[Bug 93] New: iptables -L format bug
...=====
RCS file: /cvspublic/netfilter/userspace/iptables.c,v
retrieving revision 1.58
diff -u -r1.58 iptables.c
--- netfilter//userspace/iptables.c 5 May 2003 19:33:40 -0000 1.58
+++ netfilter//userspace/iptables.c 29 May 2003 04:49:58 -0000
@@ -1254,14 +1254,14 @@
fputc(fw->ip.invflags & IPT_INV_DSTIP ? '!' : ' ', stdout);
if (fw->ip.dmsk.s_addr == 0L && !(format & FMT_NUMERIC))
- printf(FMT("%-19s","-> %s"), "anywhere");
+ printf(FMT("%-18s ","-> %s "), "anywhere");
else {
if (format &...