From 5cf13595607552598f8252e889931cea1618ed7e Mon Sep 17 00:00:00 2001 From: mouring Date: Thu, 19 Apr 2001 20:50:07 +0000 Subject: [PATCH] - 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) --- ChangeLog | 4 ++++ auth2.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9c2181e5..2f5c1ade 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,6 +19,10 @@ - markus@cvs.openbsd.org 2001/04/18 23:44:51 [authfile.c] error->debug; noted by fries@ + - 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) 20010418 - OpenBSD CVS Sync 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 @@ -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 -- 2.45.2