- 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)
This commit is contained in:
parent
648772faf5
commit
3f36496e33
|
@ -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
|
||||
|
@ -5181,4 +5185,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1145 2001/04/19 20:47:10 mouring Exp $
|
||||
$Id: ChangeLog,v 1.1146 2001/04/19 20:50:07 mouring Exp $
|
||||
|
|
4
auth2.c
4
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
|
||||
|
|
Loading…
Reference in New Issue