summaryrefslogtreecommitdiffstats
path: root/iptables.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2003-05-31 21:30:33 +0000
committerHarald Welte <laforge@gnumonks.org>2003-05-31 21:30:33 +0000
commit25fc1d7c9ff5df951346d6cf07b24ea8a2f376ac (patch)
treeafe09a9c8d0da4971476edbadbbe3698454e5ebc /iptables.c
parent6640b3cbe3217a3e21aafc64f98d25bb6fc69be2 (diff)
Fix '-L format bug' (Edward J. Huff) (Closes: #93)
Diffstat (limited to 'iptables.c')
-rw-r--r--iptables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/iptables.c b/iptables.c
index 67d30c91..21c9e49d 100644
--- a/iptables.c
+++ b/iptables.c
@@ -1254,14 +1254,14 @@ print_firewall(const struct ipt_entry *fw,
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("%-19s ","-> %s"), "anywhere");
else {
if (format & FMT_NUMERIC)
sprintf(buf, "%s", addr_to_dotted(&(fw->ip.dst)));
else
sprintf(buf, "%s", addr_to_anyname(&(fw->ip.dst)));
strcat(buf, mask_to_dotted(&(fw->ip.dmsk)));
- printf(FMT("%-19s","-> %s"), buf);
+ printf(FMT("%-19s ","-> %s"), buf);
}
if (format & FMT_NOTABLE)