diff options
author | 2019-11-25 00:51:37 +0000 | |
---|---|---|
committer | 2019-11-25 00:51:37 +0000 | |
commit | 493ad5b0cda90d3335585277887b26e978bef3b6 (patch) | |
tree | d56576bd7393accdc91415a6ce55a1cbd4a4b573 /usr.bin/ssh/ssh-add.c | |
parent | memleak in error path (diff) | |
download | wireguard-openbsd-493ad5b0cda90d3335585277887b26e978bef3b6.tar.xz wireguard-openbsd-493ad5b0cda90d3335585277887b26e978bef3b6.zip |
Add new structure for signature options
This is populated during signature verification with additional fields
that are present in and covered by the signature. At the moment, it is
only used to record security key-specific options, especially the flags
field.
with and ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index 29f8786a003..7d89a70bd82 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-add.c,v 1.146 2019/11/18 16:10:05 naddy Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.147 2019/11/25 00:51:37 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -444,7 +444,7 @@ test_key(int agent_fd, const char *filename) goto done; } if ((r = sshkey_verify(key, sig, slen, data, sizeof(data), - NULL, 0)) != 0) { + NULL, 0, NULL)) != 0) { error("Signature verification failed for %s: %s", filename, ssh_err(r)); goto done; |