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