mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 03:47:45 +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)
|
main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
const char *pk_file = NULL;
|
const char *pk_file = NULL;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
char *sk_file = sig_default_skfile();
|
char *sk_file = sig_default_skfile();
|
||||||
|
#endif
|
||||||
const char *sig_file = NULL;
|
const char *sig_file = NULL;
|
||||||
const char *message_file = NULL;
|
const char *message_file = NULL;
|
||||||
const char *comment = NULL;
|
const char *comment = NULL;
|
||||||
|
@ -719,12 +721,14 @@ main(int argc, char **argv)
|
||||||
case 'Q':
|
case 'Q':
|
||||||
quiet = 2;
|
quiet = 2;
|
||||||
break;
|
break;
|
||||||
|
#ifndef VERIFY_ONLY
|
||||||
case 's':
|
case 's':
|
||||||
free(sk_file);
|
free(sk_file);
|
||||||
if ((sk_file = strdup(optarg)) == NULL) {
|
if ((sk_file = strdup(optarg)) == NULL) {
|
||||||
exit_err("strdup()");
|
exit_err("strdup()");
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
case 't':
|
case 't':
|
||||||
trusted_comment = optarg;
|
trusted_comment = optarg;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue