From: Harald Welte Date: Sat, 31 May 2003 21:30:33 +0000 (+0000) Subject: Fix '-L format bug' (Edward J. Huff) (Closes: #93) X-Git-Tag: v1.2.9-rc1~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=25fc1d7c9ff5df951346d6cf07b24ea8a2f376ac;p=thirdparty%2Fiptables.git Fix '-L format bug' (Edward J. Huff) (Closes: #93) --- 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)