diff options
author | 2001-04-15 08:43:45 +0000 | |
---|---|---|
committer | 2001-04-15 08:43:45 +0000 | |
commit | 96fae57756c8ec491b8463b6fe34a00ac52420ef (patch) | |
tree | 3b65ae25db6369d3cee7f2411d05225e93bd6637 /usr.bin/ssh/sshconnect2.c | |
parent | Support U160 on 53c1010 chips. (diff) | |
download | wireguard-openbsd-96fae57756c8ec491b8463b6fe34a00ac52420ef.tar.xz wireguard-openbsd-96fae57756c8ec491b8463b6fe34a00ac52420ef.zip |
some unused variable and typos; from tomh@po.crl.go.jp
Diffstat (limited to 'usr.bin/ssh/sshconnect2.c')
-rw-r--r-- | usr.bin/ssh/sshconnect2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshconnect2.c b/usr.bin/ssh/sshconnect2.c index 9a1d2576e1f..4acdd017172 100644 --- a/usr.bin/ssh/sshconnect2.c +++ b/usr.bin/ssh/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.68 2001/04/12 19:15:25 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.69 2001/04/15 08:43:47 markus Exp $"); #include <openssl/bn.h> #include <openssl/md5.h> @@ -358,7 +358,7 @@ input_userauth_pk_ok(int type, int plen, void *ctxt) Authctxt *authctxt = ctxt; Key *key = NULL; Buffer b; - int alen, blen, pktype, sent = 0; + int alen, blen, sent = 0; char *pkalg, *pkblob, *fp; if (authctxt == NULL) @@ -386,7 +386,7 @@ input_userauth_pk_ok(int type, int plen, void *ctxt) debug("no last key or no sign cb"); break; } - if ((pktype = key_type_from_name(pkalg)) == KEY_UNSPEC) { + if (key_type_from_name(pkalg) == KEY_UNSPEC) { debug("unknown pkalg %s", pkalg); break; } |