From 1e0d8f7a1ab5a4eed242901af0a9eff645807a55 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Gonzalez Date: Mon, 29 Apr 2013 02:36:07 +0000 Subject: src: delete exporting internal flags in XML MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The uint32_t flags attribute is internal, so no need to export via XML. Signed-off-by: Arturo Borrero González Signed-off-by: Pablo Neira Ayuso --- src/chain.c | 5 ++--- src/table.c | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/chain.c b/src/chain.c index fb5d218..44a0e66 100644 --- a/src/chain.c +++ b/src/chain.c @@ -452,7 +452,6 @@ static int nft_chain_snprintf_xml(char *buf, size_t size, struct nft_chain *c) "" "" - "%d" "%s" "%s
" "%d" @@ -463,8 +462,8 @@ static int nft_chain_snprintf_xml(char *buf, size_t size, struct nft_chain *c) "
" "
", c->name, c->handle, c->bytes, c->packets, - c->flags, c->type, c->table, c->prio, - c->use, c->hooknum, c->policy, c->family); + c->type, c->table, c->prio, c->use, c->hooknum, + c->policy, c->family); } static int nft_chain_snprintf_default(char *buf, size_t size, struct nft_chain *c) diff --git a/src/table.c b/src/table.c index 2d72136..8adaba8 100644 --- a/src/table.c +++ b/src/table.c @@ -188,11 +188,10 @@ static int nft_table_snprintf_xml(char *buf, size_t size, struct nft_table *t) "" "" "%u" - "%d" "%d" "" "
" , - t->name, t->family, t->flags, t->table_flags); + t->name, t->family, t->table_flags); } static int nft_table_snprintf_default(char *buf, size_t size, struct nft_table *t) -- cgit v1.2.3