summaryrefslogtreecommitdiffstats
path: root/examples/nft-ct-helper-get.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nft-ct-helper-get.c')
-rw-r--r--examples/nft-ct-helper-get.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/examples/nft-ct-helper-get.c b/examples/nft-ct-helper-get.c
index 94bd0cd..eb03133 100644
--- a/examples/nft-ct-helper-get.c
+++ b/examples/nft-ct-helper-get.c
@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
uint32_t type = NFTNL_OUTPUT_DEFAULT;
if (argc < 3 || argc > 5) {
- fprintf(stderr, "%s <family> <table> [<obj>] [<default|xml|json>]\n",
+ fprintf(stderr, "%s <family> <table> [<obj>]\n",
argv[0]);
return EXIT_FAILURE;
}
@@ -76,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) {