From: Daniel Golle Date: Fri, 8 Jun 2018 00:07:46 +0000 (+0200) Subject: don't be crazily strickt on position of '-q' parameter X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5b2c68cf69ac08f47864c7a64e377a038e46c1a2;p=oweals%2Fucert.git don't be crazily strickt on position of '-q' parameter Signed-off-by: Daniel Golle This work was sponsored by WIO (wiowireless.com) --- diff --git a/ucert.c b/ucert.c index 49d39e9..32fa523 100644 --- a/ucert.c +++ b/ucert.c @@ -676,7 +676,7 @@ int main(int argc, char *argv[]) { pubkeydir = optarg; break; case 'q': - if (quiet || cmd == CMD_NONE) + if (quiet) return usage(argv[0]); quiet = true; break;