From fd61eda16d081f30fdca97c97d71381d255d46d4 Mon Sep 17 00:00:00 2001 From: Oliver Stöneberg Date: Mon, 2 May 2011 09:46:44 -0700 Subject: keyfiles: Move FILE* into HAVE_LIBGCRYPT code. (cherry picked from commit c7c563eb8ad01ab5750b5ea4e72031ebd298651c) --- src/keyfiles.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/keyfiles.c b/src/keyfiles.c index 1c5c34db..77910ed0 100644 --- a/src/keyfiles.c +++ b/src/keyfiles.c @@ -872,15 +872,6 @@ ssh_private_key _privatekey_from_file(void *session, const char *filename, } #endif -#ifdef HAVE_LIBCRYPTO - bio = BIO_new_file(filename,"r"); - if (bio == NULL) { - fclose(file); - ssh_set_error(session, SSH_FATAL, "Could not create BIO."); - return NULL; - } -#endif - switch (type) { case SSH_KEYTYPE_DSS: #ifdef HAVE_LIBGCRYPT -- cgit