summaryrefslogtreecommitdiffstats
path: root/examples/nft-ruleset-get.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2018-10-09 00:03:28 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-10-15 14:04:27 +0200
commit80077787f8f21da1efd8dc27a4c5767ab47a1df6 (patch)
tree01d9b399a1aad23d7ea1d1e1daa0ad98bec69e0a /examples/nft-ruleset-get.c
parentaaf20ad0dc22d2ebcad1b2c43288e984f0efe2c3 (diff)
src: remove json support
We have better json support in libnftables these days. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'examples/nft-ruleset-get.c')
-rw-r--r--examples/nft-ruleset-get.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/examples/nft-ruleset-get.c b/examples/nft-ruleset-get.c
index 9e80bb6..7098437 100644
--- a/examples/nft-ruleset-get.c
+++ b/examples/nft-ruleset-get.c
@@ -344,20 +344,10 @@ int main(int argc, char *argv[])
int ret;
if (argc > 2) {
- fprintf(stderr, "%s {json}\n",
- argv[0]);
+ fprintf(stderr, "%s\n", argv[0]);
exit(EXIT_FAILURE);
}
- if (argc == 2) {
- if (strcmp(argv[1], "json") == 0)
- type = NFTNL_OUTPUT_JSON;
- else {
- fprintf(stderr, "Unknown type: only json is supported\n");
- exit(EXIT_FAILURE);
- }
- }
-
nl = mnl_socket_open(NETLINK_NETFILTER);
if (nl == NULL) {
perror("mnl_socket_open");