diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-10-09 21:08:30 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-10-09 21:08:30 +0300 |
commit | 14d030093e599b342acf0e0450bf29c6268d21d7 (patch) | |
tree | 0585c98190ca7ae8b096d7095716585c5e16623a /src/actionparser.c | |
parent | 855c582f5eecaab2cb5637a5157658f7cb71cc1d (diff) | |
download | ck-14d030093e599b342acf0e0450bf29c6268d21d7.tar.gz ck-14d030093e599b342acf0e0450bf29c6268d21d7.tar.bz2 ck-14d030093e599b342acf0e0450bf29c6268d21d7.zip |
Fix bug with parser
Diffstat (limited to 'src/actionparser.c')
-rw-r--r-- | src/actionparser.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/actionparser.c b/src/actionparser.c index be96bb3..f348ff6 100644 --- a/src/actionparser.c +++ b/src/actionparser.c @@ -378,21 +378,21 @@ int parse_action(int argc, char* argv[], UserOpt *opt) { /* handle version info */ if (version()) { - return 1; + return -1; } /* set verbose level */ verbose(); /* figure what is the config file */ if (get_config(opt)) { - return 1; + return -1; } /* If the remaining arguments are < 2 * print help and exit */ - /* if (optNum - pos < 2) { */ - /* print_parser_help(); */ - /* return -1; */ - /* } */ + if (optNum - pos < 1) { + print_parser_help(); + return -1; + } /* find the action */ determine_action(opt); |