From b971834d1040bdbbe5b775248ffe511f8615287a Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sun, 7 Feb 2010 21:41:08 +0100 Subject: Respect known_hosts file set by the user. Thanks to contact@leblanc-simon.eu for the patch. --- libssh/keyfiles.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libssh/keyfiles.c') diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c index 21b02a82..ab2050ed 100644 --- a/libssh/keyfiles.c +++ b/libssh/keyfiles.c @@ -1501,9 +1501,11 @@ int ssh_write_knownhost(ssh_session session) { char *dir; size_t len = 0; - if (ssh_options_set(session, SSH_OPTIONS_KNOWNHOSTS, NULL) < 0) { - ssh_set_error(session, SSH_FATAL, "Cannot find known_hosts file."); - return -1; + if (session->knownhosts == NULL) { + if (ssh_options_set(session, SSH_OPTIONS_KNOWNHOSTS, NULL) < 0) { + ssh_set_error(session, SSH_FATAL, "Can't find a known_hosts file"); + return -1; + } } if (session->host == NULL) { -- cgit v1.2.3