1
1

Respect known_hosts file set by the user.

Thanks to contact@leblanc-simon.eu for the patch.
Этот коммит содержится в:
Andreas Schneider 2010-02-07 21:41:08 +01:00
родитель 94ee9effe6
Коммит b971834d10

Просмотреть файл

@ -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) {