]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2001/04/19 00:05:11
authormouring <mouring>
Thu, 19 Apr 2001 20:50:07 +0000 (20:50 +0000)
committermouring <mouring>
Thu, 19 Apr 2001 20:50:07 +0000 (20:50 +0000)
     [auth2.c]
     use local variable, no function call needed.
     (btw, hostbased works now with ssh.com >= 2.0.13)

ChangeLog
auth2.c

index 9c2181e5429c4de1a3f7871c91525ab584422a2e..2f5c1adeb83b86df2f34afaedc83507001bf494e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - 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 1abb01d2aba3221d387d249bf143d23180e8872b..5ffd43fe5b819550ae650245ed11ee7edc254849 100644 (file)
--- 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
This page took 0.127416 seconds and 5 git commands to generate.