pstore: refuse to run if arguments are specified

(This is why the --help chech passed.)
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2019-07-22 10:43:19 +02:00
parent a505166845
commit 22d6bea882

View file

@ -361,6 +361,10 @@ static int run(int argc, char *argv[]) {
log_open();
if (argc > 1)
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"This program takes no arguments.");
/* Ignore all parse errors */
(void) parse_config();