From 3a9c8f838c6b5edc94e61d4c3f5169ee253a1db4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Neira=20Ayuso?= Date: Thu, 18 Jul 2013 13:36:01 +0200 Subject: chain: json: fix wrong display of table and family In (74ccff7 chain: json: use string to identify policy), the json support for chain was unintentionally swapping the table name and the family. Signed-off-by: Alvaro Neira Ayuso Signed-off-by: Pablo Neira Ayuso --- src/chain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/chain.c b/src/chain.c index 0a0e688..3c73511 100644 --- a/src/chain.c +++ b/src/chain.c @@ -746,8 +746,8 @@ static int nft_chain_snprintf_json(char *buf, size_t size, struct nft_chain *c) "\"table\": \"%s\"," "\"use\": %d", c->name, c->handle, c->bytes, c->packets, - NFT_CHAIN_JSON_VERSION, c->table, - nft_family2str(c->family), c->use); + NFT_CHAIN_JSON_VERSION, nft_family2str(c->family), + c->table, c->use); SNPRINTF_BUFFER_SIZE(ret, size, len, offset); if (c->flags & (1 << NFT_CHAIN_ATTR_HOOKNUM)) { -- cgit v1.2.3