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) {
|
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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue