summaryrefslogtreecommitdiffstats
path: root/auth2.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-19 20:50:07 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-19 20:50:07 +0000
commit3f36496e33ffb16b9b1c0d6c6da33c021b26f6a2 (patch)
tree69f792767b34e3a555e58ac9f934294949c3f16b /auth2.c
parent648772faf5ed2ee182af0c4a031014edd7a89978 (diff)
- markus@cvs.openbsd.org 2001/04/19 00:05:11
[auth2.c] use local variable, no function call needed. (btw, hostbased works now with ssh.com >= 2.0.13)
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth2.c b/auth2.c
index 1abb01d2..5ffd43fe 100644
--- a/auth2.c
+++ b/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>
@@ -482,7 +482,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