diff mbox

[nft] monitor: fix missing space after chain name

Message ID 20150407150514.1615.70626.stgit@nfdev2.cica.es
State Accepted
Delegated to: Pablo Neira
Headers show

Commit Message

Arturo Borrero April 7, 2015, 3:05 p.m. UTC
Due to change f3ff9e9 ("rule: delete extra space in rule indentation") in
function rule_print(), a missing space happens in monitor.

before this patch:
 % nft monitor
 add rule ip test-table test-chainip protocol tcp

after this patch:
 % nft monitor
 add rule ip test-table test-chain ip protocol tcp

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
 src/netlink.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Pablo Neira Ayuso April 8, 2015, 5:06 p.m. UTC | #1
On Tue, Apr 07, 2015 at 05:05:14PM +0200, Arturo Borrero Gonzalez wrote:
> Due to change f3ff9e9 ("rule: delete extra space in rule indentation") in
> function rule_print(), a missing space happens in monitor.
> 
> before this patch:
>  % nft monitor
>  add rule ip test-table test-chainip protocol tcp
> 
> after this patch:
>  % nft monitor
>  add rule ip test-table test-chain ip protocol tcp

Applied, thanks Arturo.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/src/netlink.c b/src/netlink.c
index f957295..c118502 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -1869,7 +1869,7 @@  static int netlink_events_rule_cb(const struct nlmsghdr *nlh, int type,
 			r = netlink_delinearize_rule(monh->ctx, nlr);
 			nlr_for_each_set(nlr, rule_map_decompose_cb, NULL);
 
-			printf("add rule %s %s %s", family, table, chain);
+			printf("add rule %s %s %s ", family, table, chain);
 			rule_print(r);
 			printf("\n");