summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Graf <tgr@lsx.localdomain>2008-06-17 03:04:19 +0200
committerThomas Graf <tgr@lsx.localdomain>2008-06-17 03:04:19 +0200
commit13ab2441ced84cfc093734b257c43fa468cb22fd (patch)
tree0dd70100367d6344871ba99cad6a7c9c2ec429bb /src
parentff05f2ffc3caea6c59b6c940aa80e1314783a070 (diff)
downloadlibnl-13ab2441ced84cfc093734b257c43fa468cb22fd.tar.gz
Remove XML dumping
Bloats the library, not frequently used
Diffstat (limited to 'src')
-rw-r--r--src/nl-list-caches.c1
-rw-r--r--src/utils.c2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/nl-list-caches.c b/src/nl-list-caches.c
index 281be003..e9e81c5b 100644
--- a/src/nl-list-caches.c
+++ b/src/nl-list-caches.c
@@ -48,7 +48,6 @@ static void print(struct nl_cache_ops *ops, void *arg)
"brief",
"detailed",
"stats",
- "xml",
"env",
};
int i;
diff --git a/src/utils.c b/src/utils.c
index b73a1436..5fa75e33 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -96,8 +96,6 @@ int nlt_parse_dumptype(const char *str)
return NL_DUMP_DETAILS;
else if (!strcasecmp(str, "stats"))
return NL_DUMP_STATS;
- else if (!strcasecmp(str, "xml"))
- return NL_DUMP_XML;
else if (!strcasecmp(str, "env"))
return NL_DUMP_ENV;
else