cli: do not return 0 if the command was invalid
authorFelix Fietkau <nbd@openwrt.org>
Sat, 2 Apr 2011 13:44:34 +0000 (15:44 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 2 Apr 2011 13:44:34 +0000 (15:44 +0200)
cli.c

diff --git a/cli.c b/cli.c
index 0e98aa7..b660273 100644 (file)
--- a/cli.c
+++ b/cli.c
@@ -687,10 +687,9 @@ int main(int argc, char **argv)
        ret = uci_cmd(argc - 1, argv + 1);
        if (input != stdin)
                fclose(input);
-       if (ret == 255) {
+
+       if (ret == 255)
                uci_usage();
-               return 0;
-       }
 
        uci_free_context(ctx);