X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=cli.c;h=305d9fed4b3a83a3118c573b47da51f6bf144313;hb=7d69106b37851e90bd8660c91d906492f6d7d148;hp=1f08100d354f38c2f9ab93a3bc1ca1f69d97463e;hpb=c1684cd213ebc7b0064f9dfe536b5d5283a18ef4;p=project%2Fuci.git diff --git a/cli.c b/cli.c index 1f08100..305d9fe 100644 --- a/cli.c +++ b/cli.c @@ -202,8 +202,11 @@ static int package_cmd(int cmd, char *tuple) uci_export(ctx, stdout, ptr.p, true); break; case CMD_SHOW: - if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) + if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) { + ctx->err = UCI_ERR_NOTFOUND; + cli_perror(); return 1; + } switch(e->type) { case UCI_TYPE_PACKAGE: uci_show_package(ptr.p); @@ -340,6 +343,11 @@ static int uci_do_section_cmd(int cmd, int argc, char **argv) e = ptr.last; switch(cmd) { case CMD_GET: + if (!(ptr.flags & UCI_LOOKUP_COMPLETE)) { + ctx->err = UCI_ERR_NOTFOUND; + cli_perror(); + return 1; + } switch(e->type) { case UCI_TYPE_SECTION: printf("%s\n", ptr.s->type);