Displaying 1 result from an estimated 1 matches for "fmt_numer".
Did you mean:
fmt_numeric
2003 May 29
0
[Bug 93] New: iptables -L format bug
...-- 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 & FMT_NUMERIC)
sprintf(buf, "%s", addr_to_dotted(&(fw->ip.dst)));
else
sprintf(buf...