diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-01-28 21:40:37 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-01-30 13:12:00 +1000 |
commit | aabb7c3cddf5e97d1b1ebb3548664f1af85c1392 (patch) | |
tree | 6a63a4ee459fdb191d02d471232737a6285609ba /src/pacman | |
parent | 7ae25ac67fd4dd087791be55fa3c4997be7aac52 (diff) |
pacman: use exit status 0 for --help and --version
The user requesting usage or version information is not an error.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/pacman')
-rw-r--r-- | src/pacman/pacman.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 71443394..8c76987e 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -889,11 +889,11 @@ static int parseargs(int argc, char *argv[]) } if(config->help) { usage(config->op, mbasename(argv[0])); - return 2; + cleanup(0); } if(config->version) { version(); - return 2; + cleanup(0); } /* parse all other options */ |