diff mbox

[nft] netlink: fix chain attribute parsing

Message ID 20140226174659.19715.82142.stgit@nfdev.cica.es
State Accepted
Headers show

Commit Message

Arturo Borrero Feb. 26, 2014, 5:46 p.m. UTC
The handle's table was being set to the chain name instead of the
chain table attribute.

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 Feb. 27, 2014, 9:18 a.m. UTC | #1
On Wed, Feb 26, 2014 at 06:46:59PM +0100, Arturo Borrero Gonzalez wrote:
> The handle's table was being set to the chain name instead of the
> chain table attribute.

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 2871888..b036dce 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -514,7 +514,7 @@  static int list_chain_cb(struct nft_chain *nlc, void *arg)
 	chain->handle.family =
 		nft_chain_attr_get_u32(nlc, NFT_CHAIN_ATTR_FAMILY);
 	chain->handle.table  =
-		xstrdup(nft_chain_attr_get_str(nlc, NFT_CHAIN_ATTR_NAME));
+		xstrdup(nft_chain_attr_get_str(nlc, NFT_CHAIN_ATTR_TABLE));
 	chain->handle.handle =
 		nft_chain_attr_get_u64(nlc, NFT_CHAIN_ATTR_HANDLE);