X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=f8b45dba091f088f84e22dc98503fe9e6e1fd7e3;hp=36ef6e5d1cbbedbd3baa07d8a11f4dbd7dd27db2;hb=4c4d343caa1f1997818f895b9c58b313d2e8a578;hpb=c79cc497e7b0caa0f9f6a2c978fa9a5f0f097463 diff --git a/cli.c b/cli.c index 36ef6e5..f8b45db 100644 --- a/cli.c +++ b/cli.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include #include "uci.h" @@ -37,9 +39,11 @@ enum { CMD_GET, CMD_SET, CMD_ADD_LIST, + CMD_DEL_LIST, CMD_DEL, CMD_RENAME, CMD_REVERT, + CMD_REORDER, /* package cmds */ CMD_SHOW, CMD_CHANGES, @@ -83,9 +87,10 @@ static char * uci_lookup_section_ref(struct uci_section *s) { struct uci_type_list *ti = type_list; + char *ret; int maxlen; - if (!s->anonymous || !(flags & CLI_FLAG_SHOW_EXT)) + if (!(flags & CLI_FLAG_SHOW_EXT)) return s->e.name; /* look up in section type list */ @@ -96,21 +101,33 @@ uci_lookup_section_ref(struct uci_section *s) } if (!ti) { ti = malloc(sizeof(struct uci_type_list)); + if (!ti) + return NULL; memset(ti, 0, sizeof(struct uci_type_list)); ti->next = type_list; type_list = ti; ti->name = s->type; } - maxlen = strlen(s->type) + 1 + 2 + 10; - if (!typestr) { - typestr = malloc(maxlen); + if (s->anonymous) { + maxlen = strlen(s->type) + 1 + 2 + 10; + if (!typestr) { + typestr = malloc(maxlen); + } else { + typestr = realloc(typestr, maxlen); + } + + if (typestr) + sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + + ret = typestr; } else { - typestr = realloc(typestr, maxlen); + ret = s->e.name; } - sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + ti->idx++; - return typestr; + + return ret; } static void uci_usage(void) @@ -125,12 +142,14 @@ static void uci_usage(void) "\tcommit []\n" "\tadd \n" "\tadd_list .
.