mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
More things to remove in VERIFY_ONLY mode
This commit is contained in:
parent
d654ad4647
commit
86e2210682
1 changed files with 5 additions and 1 deletions
|
@ -677,6 +677,7 @@ main(int argc, char **argv)
|
|||
|
||||
while ((opt_flag = getopt(argc, argv, getopt_options)) != -1) {
|
||||
switch(opt_flag) {
|
||||
#ifndef VERIFY_ONLY
|
||||
case 'G':
|
||||
if (action != ACTION_NONE && action != ACTION_GENERATE) {
|
||||
usage();
|
||||
|
@ -689,15 +690,18 @@ main(int argc, char **argv)
|
|||
}
|
||||
action = ACTION_SIGN;
|
||||
break;
|
||||
#endif
|
||||
case 'V':
|
||||
if (action != ACTION_NONE && action != ACTION_VERIFY) {
|
||||
usage();
|
||||
}
|
||||
action = ACTION_VERIFY;
|
||||
break;
|
||||
#ifndef VERIFY_ONLY
|
||||
case 'c':
|
||||
comment = optarg;
|
||||
break;
|
||||
#endif
|
||||
case 'h':
|
||||
usage();
|
||||
case 'H':
|
||||
|
@ -728,10 +732,10 @@ main(int argc, char **argv)
|
|||
exit_err("strdup()");
|
||||
};
|
||||
break;
|
||||
#endif
|
||||
case 't':
|
||||
trusted_comment = optarg;
|
||||
break;
|
||||
#endif
|
||||
case 'x':
|
||||
sig_file = optarg;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue