diff options
| author | 2001-04-19 00:05:11 +0000 | |
|---|---|---|
| committer | 2001-04-19 00:05:11 +0000 | |
| commit | eee13e8d340652acf5e0c08fe66ac30618c962c3 (patch) | |
| tree | bd1f16b1f5e6ed34822b69cd8cd24a1510db2b64 | |
| parent | error->debug; noted by fries@ (diff) | |
| download | wireguard-openbsd-eee13e8d340652acf5e0c08fe66ac30618c962c3.tar.xz wireguard-openbsd-eee13e8d340652acf5e0c08fe66ac30618c962c3.zip | |
use local variable, no function call needed.
(btw, hostbased works now with ssh.com >= 2.0.13)
| -rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index 183fd6e8d19..f2ee9a2dbc1 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.55 2001/04/18 23:43:25 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.56 2001/04/19 00:05:11 markus Exp $"); #include <openssl/evp.h> @@ -428,7 +428,7 @@ userauth_pubkey(Authctxt *authctxt) } else { buffer_put_cstring(&b, "publickey"); buffer_put_char(&b, have_sig); - buffer_put_cstring(&b, key_ssh_name(key)); + buffer_put_cstring(&b, pkalg); } buffer_put_string(&b, pkblob, blen); #ifdef DEBUG_PK |
