From 1c8a6c57b0936ca24fe2dd8455c47d6a2fb5cb7f Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Fri, 19 Apr 2013 01:51:57 +0200 Subject: src: remove trailing \n from all nft_*_snprintf functions The caller should add it in case it needs it. Signed-off-by: Pablo Neira Ayuso --- src/table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/table.c') diff --git a/src/table.c b/src/table.c index c963e6e..2d72136 100644 --- a/src/table.c +++ b/src/table.c @@ -197,7 +197,7 @@ static int nft_table_snprintf_xml(char *buf, size_t size, struct nft_table *t) static int nft_table_snprintf_default(char *buf, size_t size, struct nft_table *t) { - return snprintf(buf, size, "table=%s family=%u flags=%x\n", + return snprintf(buf, size, "table=%s family=%u flags=%x", t->name, t->family, t->table_flags); } -- cgit v1.2.3