X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=cli.c;h=144cddefa285f0fbdfaa4d88514404a6686b6258;hp=25a61f872b540347012c483bc8a30445376fa190;hb=2e90d2637abcbea12f5f4070be7a158fb4637604;hpb=13ccfd04a22f58928a29e9282ed30f5cc097165d diff --git a/cli.c b/cli.c index 25a61f8..144cdde 100644 --- a/cli.c +++ b/cli.c @@ -27,6 +27,7 @@ static enum { CLI_FLAG_NOCOMMIT = (1 << 2), CLI_FLAG_BATCH = (1 << 3), CLI_FLAG_SHOW_EXT = (1 << 4), + CLI_FLAG_NOPLUGINS= (1 << 5), } flags; static FILE *input; @@ -40,6 +41,7 @@ enum { CMD_DEL, CMD_RENAME, CMD_REVERT, + CMD_REORDER, /* package cmds */ CMD_SHOW, CMD_CHANGES, @@ -96,6 +98,8 @@ 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; @@ -108,8 +112,12 @@ uci_lookup_section_ref(struct uci_section *s) } else { typestr = realloc(typestr, maxlen); } - sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + + if (typestr) + sprintf(typestr, "@%s[%d]", ti->name, ti->idx); + ti->idx++; + return typestr; } @@ -131,11 +139,13 @@ static void uci_usage(void) "\tdelete [.]]\n" "\trename .
[.