summaryrefslogtreecommitdiffstats
path: root/src/table.c
diff options
context:
space:
mode:
authorÁlvaro Neira Ayuso <alvaroneay@gmail.com>2013-10-13 21:52:34 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-10-17 10:03:37 +0200
commitec4b60bebcab23d46aa09bed06018457c35e5afa (patch)
tree20a277a82715a2771869320cb1854daa55e52644 /src/table.c
parent271442070bdde632e591871ade7b39ffd2cf63fb (diff)
src: json: remove spaces
Remove all the spaces from the JSON output to reduce the size of the output string, this also provides a consistent output in table, chain, rule and set. As Stephen Hemminger suggested, better to squash the output to consume as less bytes as possible. Signed-off-by: Alvaro Neira Ayuso <alvaroneay@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/table.c')
-rw-r--r--src/table.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/table.c b/src/table.c
index 7f14b32..d3ff188 100644
--- a/src/table.c
+++ b/src/table.c
@@ -349,10 +349,10 @@ EXPORT_SYMBOL(nft_table_parse);
static int nft_table_snprintf_json(char *buf, size_t size, struct nft_table *t)
{
return snprintf(buf, size,
- "{\"table\" : {"
- "\"name\" : \"%s\","
- "\"family\" : \"%s\","
- "\"flags\" : %d"
+ "{\"table\":{"
+ "\"name\":\"%s\","
+ "\"family\":\"%s\","
+ "\"flags\":%d"
"}"
"}" ,
t->name, nft_family2str(t->family), t->table_flags);