diff options
author | 2014-05-16 17:42:24 +0000 | |
---|---|---|
committer | 2014-05-16 17:42:24 +0000 | |
commit | 9fbe12ff509da096456acc2be7e1baff908ee6da (patch) | |
tree | b79ebfe0fee4595f43c518c1c5915c224876eabb | |
parent | Zero out grp before re-using it (new ones are already cleared by (diff) | |
download | wireguard-openbsd-9fbe12ff509da096456acc2be7e1baff908ee6da.tar.xz wireguard-openbsd-9fbe12ff509da096456acc2be7e1baff908ee6da.zip |
checksum mode can use magic pubkey finder too
-rw-r--r-- | usr.bin/signify/signify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/signify/signify.c b/usr.bin/signify/signify.c index f91dc575152..56d9e34f048 100644 --- a/usr.bin/signify/signify.c +++ b/usr.bin/signify/signify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signify.c,v 1.85 2014/05/16 16:18:33 espie Exp $ */ +/* $OpenBSD: signify.c,v 1.86 2014/05/16 17:42:24 tedu Exp $ */ /* * Copyright (c) 2013 Ted Unangst <tedu@openbsd.org> * @@ -759,8 +759,8 @@ main(int argc, char **argv) #ifndef VERIFYONLY if (verb == CHECK) { - if (!pubkeyfile || !sigfile) - usage("must specify pubkey and sigfile"); + if (!sigfile) + usage("must specify sigfile"); check(pubkeyfile, sigfile, quiet, argc, argv); return 0; } |