diff options
author | 2001-06-26 20:14:10 +0000 | |
---|---|---|
committer | 2001-06-26 20:14:10 +0000 | |
commit | 477b4babd1b41419bfd349aa200918e3d2563a79 (patch) | |
tree | f5f6d63cdaeccdcccc260ffdc430dc600531ef6d /usr.bin/ssh/key.c | |
parent | regen (diff) | |
download | wireguard-openbsd-477b4babd1b41419bfd349aa200918e3d2563a79.tar.xz wireguard-openbsd-477b4babd1b41419bfd349aa200918e3d2563a79.zip |
add smartcard support to the client, too (now you can use both
the agent and the client).
Diffstat (limited to 'usr.bin/ssh/key.c')
-rw-r--r-- | usr.bin/ssh/key.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index 2000c2755b5..0ddd3d9d476 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -32,7 +32,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: key.c,v 1.28 2001/06/25 08:25:37 markus Exp $"); +RCSID("$OpenBSD: key.c,v 1.29 2001/06/26 20:14:10 markus Exp $"); #include <openssl/evp.h> @@ -54,6 +54,7 @@ key_new(int type) DSA *dsa; k = xmalloc(sizeof(*k)); k->type = type; + k->flags = 0; k->dsa = NULL; k->rsa = NULL; switch (k->type) { |