Don't compile some more code in VERIFY_ONLY mode

This commit is contained in:
Frank Denis 2016-07-31 14:48:14 +02:00
parent 180c40bf03
commit d654ad4647

View file

@ -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;