mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 03:17:41 +03:00
Don't compile some more code in VERIFY_ONLY mode
This commit is contained in:
parent
180c40bf03
commit
d654ad4647
1 changed files with 4 additions and 0 deletions
|
@ -661,7 +661,9 @@ int
|
|||
main(int argc, char **argv)
|
||||
{
|
||||
const char *pk_file = NULL;
|
||||
#ifndef VERIFY_ONLY
|
||||
char *sk_file = sig_default_skfile();
|
||||
#endif
|
||||
const char *sig_file = NULL;
|
||||
const char *message_file = NULL;
|
||||
const char *comment = NULL;
|
||||
|
@ -719,12 +721,14 @@ main(int argc, char **argv)
|
|||
case 'Q':
|
||||
quiet = 2;
|
||||
break;
|
||||
#ifndef VERIFY_ONLY
|
||||
case 's':
|
||||
free(sk_file);
|
||||
if ((sk_file = strdup(optarg)) == NULL) {
|
||||
exit_err("strdup()");
|
||||
};
|
||||
break;
|
||||
#endif
|
||||
case 't':
|
||||
trusted_comment = optarg;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue