From 52dbdb74cb9a76ba97e6787b9d2373ceb85a448d Mon Sep 17 00:00:00 2001 From: Arturo Borrero Date: Thu, 5 Mar 2015 19:47:52 +0100 Subject: arptables-compat: delete extra space in target printing This is an extra space, let's get rid of it. Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- iptables/nft-arp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iptables/nft-arp.c') diff --git a/iptables/nft-arp.c b/iptables/nft-arp.c index 523b3ec3..503c65af 100644 --- a/iptables/nft-arp.c +++ b/iptables/nft-arp.c @@ -593,7 +593,7 @@ nft_arp_print_firewall(struct nft_rule *r, unsigned int num, if (cs.jumpto != NULL && strcmp(cs.jumpto, "") != 0) { printf("-j %s", cs.jumpto); } else if (cs.target) { - printf("-j %s ", cs.target->name); + printf("-j %s", cs.target->name); cs.target->print(&cs.fw, cs.target->t, format & FMT_NUMERIC); } -- cgit v1.2.3