More things to remove in VERIFY_ONLY mode

This commit is contained in:
Frank Denis 2016-07-31 14:49:57 +02:00
parent d654ad4647
commit 86e2210682

View file

@ -677,6 +677,7 @@ main(int argc, char **argv)
while ((opt_flag = getopt(argc, argv, getopt_options)) != -1) { while ((opt_flag = getopt(argc, argv, getopt_options)) != -1) {
switch(opt_flag) { switch(opt_flag) {
#ifndef VERIFY_ONLY
case 'G': case 'G':
if (action != ACTION_NONE && action != ACTION_GENERATE) { if (action != ACTION_NONE && action != ACTION_GENERATE) {
usage(); usage();
@ -689,15 +690,18 @@ main(int argc, char **argv)
} }
action = ACTION_SIGN; action = ACTION_SIGN;
break; break;
#endif
case 'V': case 'V':
if (action != ACTION_NONE && action != ACTION_VERIFY) { if (action != ACTION_NONE && action != ACTION_VERIFY) {
usage(); usage();
} }
action = ACTION_VERIFY; action = ACTION_VERIFY;
break; break;
#ifndef VERIFY_ONLY
case 'c': case 'c':
comment = optarg; comment = optarg;
break; break;
#endif
case 'h': case 'h':
usage(); usage();
case 'H': case 'H':
@ -728,10 +732,10 @@ main(int argc, char **argv)
exit_err("strdup()"); exit_err("strdup()");
}; };
break; break;
#endif
case 't': case 't':
trusted_comment = optarg; trusted_comment = optarg;
break; break;
#endif
case 'x': case 'x':
sig_file = optarg; sig_file = optarg;
break; break;