From 4653379ac6ccab88b75b70e86a20ef5a48811a95 Mon Sep 17 00:00:00 2001 From: laforge Date: Sat, 31 May 2003 21:30:33 +0000 Subject: Fix '-L format bug' (Edward J. Huff) (Closes: #93) --- iptables.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iptables.c b/iptables.c index 67d30c9..21c9e49 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) -- cgit v1.2.3