summaryrefslogtreecommitdiffstats
path: root/examples/nft-obj-get.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-obj-get.c')
-rw-r--r--examples/nft-obj-get.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/examples/nft-obj-get.c b/examples/nft-obj-get.c
index bec33b6..e6a19fe 100644
--- a/examples/nft-obj-get.c
+++ b/examples/nft-obj-get.c
@@ -57,8 +57,7 @@ int main(int argc, char *argv[])
uint32_t type = NFTNL_OUTPUT_DEFAULT;
if (argc < 2 || argc > 5) {
- fprintf(stderr, "%s <family> <table> [<obj>] [<default|xml|json>]\n",
- argv[0]);
+ fprintf(stderr, "%s <family> <table> [<obj>]\n", argv[0]);
return EXIT_FAILURE;
}
@@ -77,18 +76,6 @@ int main(int argc, char *argv[])
exit(EXIT_FAILURE);
}
- if (strcmp(argv[argc-1], "xml") == 0) {
- type = NFTNL_OUTPUT_XML;
- argv[argc-1] = NULL;
- argc--;
- }else if (strcmp(argv[argc-1], "json") == 0) {
- type = NFTNL_OUTPUT_JSON;
- argv[argc-1] = NULL;
- argc--;
- } else if (strcmp(argv[argc - 1], "default") == 0) {
- argc--;
- }
-
if (argc == 3 || argc == 4) {
t = nftnl_obj_alloc();
if (t == NULL) {