]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2001/04/18 23:44:51
authormouring <mouring>
Thu, 19 Apr 2001 20:47:10 +0000 (20:47 +0000)
committermouring <mouring>
Thu, 19 Apr 2001 20:47:10 +0000 (20:47 +0000)
     [authfile.c]
     error->debug; noted by fries@

ChangeLog
authfile.c

index f35aaffff28944ee9a2bd3fc4fb8328a6a0583af..9c2181e5429c4de1a3f7871c91525ab584422a2e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,6 +16,9 @@
      [auth2.c compat.c sshconnect2.c]                                    
      more ssh v2 hostbased-auth interop: ssh.com >= 2.1.0 works now      
      (however the 2.1.0 server seems to work only if debug is enabled...)
+   - markus@cvs.openbsd.org 2001/04/18 23:44:51
+     [authfile.c] 
+     error->debug; noted by fries@ 
 
 20010418
   - OpenBSD CVS Sync                            
index 2e51785a636670c3ee9739903ead6b05283af31b..8234ba0789214aae7273cf09e88a7a432f133f49 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: authfile.c,v 1.31 2001/04/15 16:58:03 markus Exp $");
+RCSID("$OpenBSD: authfile.c,v 1.32 2001/04/18 23:44:51 markus Exp $");
 
 #include <openssl/err.h>
 #include <openssl/evp.h>
@@ -447,7 +447,7 @@ key_load_private_pem(int fd, int type, const char *passphrase,
        }
        pk = PEM_read_PrivateKey(fp, NULL, NULL, (char *)passphrase);
        if (pk == NULL) {
-               error("PEM_read_PrivateKey failed");
+               debug("PEM_read_PrivateKey failed");
                (void)ERR_get_error();
        } else if (pk->type == EVP_PKEY_RSA &&
             (type == KEY_UNSPEC||type==KEY_RSA)) {
This page took 0.657816 seconds and 5 git commands to generate.