From 302a6227f73dd7c1060fa090cbc181cdcdec116c Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 23 Oct 2015 00:30:32 +0200 Subject: [PATCH] Fix -p option with -V --- src/minisign.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minisign.c b/src/minisign.c index 286d75e..8670b98 100644 --- a/src/minisign.c +++ b/src/minisign.c @@ -645,7 +645,7 @@ main(int argc, char **argv) } if (pk_file == NULL && pubkey_s == NULL) { pk_file = SIG_DEFAULT_PKFILE; - } else if (pk_file != NULL && pubkey_s == NULL) { + } else if (pk_file != NULL && pubkey_s != NULL) { usage(); } return verify(pubkey_load(pk_file, pubkey_s), message_file,