From 2ade5d42fba9f4eed4b5bba8fbff863b6149d13a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 27 Aug 2008 16:31:49 +0200 Subject: [PATCH] report errors on partial lookups for show/get in the cli instead of silently falling back to the last match --- cli.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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); -- 2.11.0