mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
Fix -p option with -V
This commit is contained in:
parent
826992ece6
commit
302a6227f7
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue