summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--auth2.c4
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d7748486..a9e33c196 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,10 @@
19 - markus@cvs.openbsd.org 2001/04/18 23:44:51 19 - markus@cvs.openbsd.org 2001/04/18 23:44:51
20 [authfile.c] 20 [authfile.c]
21 error->debug; noted by fries@ 21 error->debug; noted by fries@
22 - markus@cvs.openbsd.org 2001/04/19 00:05:11
23 [auth2.c]
24 use local variable, no function call needed.
25 (btw, hostbased works now with ssh.com >= 2.0.13)
22 26
2320010418 2720010418
24 - OpenBSD CVS Sync 28 - OpenBSD CVS Sync
@@ -5181,4 +5185,4 @@
5181 - Wrote replacements for strlcpy and mkdtemp 5185 - Wrote replacements for strlcpy and mkdtemp
5182 - Released 1.0pre1 5186 - Released 1.0pre1
5183 5187
5184$Id: ChangeLog,v 1.1145 2001/04/19 20:47:10 mouring Exp $ 5188$Id: ChangeLog,v 1.1146 2001/04/19 20:50:07 mouring Exp $
diff --git a/auth2.c b/auth2.c
index 1abb01d2a..5ffd43fe5 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2.c,v 1.55 2001/04/18 23:43:25 markus Exp $"); 26RCSID("$OpenBSD: auth2.c,v 1.56 2001/04/19 00:05:11 markus Exp $");
27 27
28#include <openssl/evp.h> 28#include <openssl/evp.h>
29 29
@@ -482,7 +482,7 @@ userauth_pubkey(Authctxt *authctxt)
482 } else { 482 } else {
483 buffer_put_cstring(&b, "publickey"); 483 buffer_put_cstring(&b, "publickey");
484 buffer_put_char(&b, have_sig); 484 buffer_put_char(&b, have_sig);
485 buffer_put_cstring(&b, key_ssh_name(key)); 485 buffer_put_cstring(&b, pkalg);
486 } 486 }
487 buffer_put_string(&b, pkblob, blen); 487 buffer_put_string(&b, pkblob, blen);
488#ifdef DEBUG_PK 488#ifdef DEBUG_PK