From 16b876d07f2381638547e848cd32be9ea022aa2f Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 16 Oct 2018 08:58:31 +0200 Subject: [PATCH] examples: Use ssh_session_update_known_hosts() for updating known_hosts Signed-off-by: Andreas Schneider --- examples/knownhosts.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/knownhosts.c b/examples/knownhosts.c index b7833d35..0726bfa8 100644 --- a/examples/knownhosts.c +++ b/examples/knownhosts.c @@ -94,7 +94,8 @@ int verify_knownhost(ssh_session session) return -1; } if(strncasecmp(buf,"yes",3)==0){ - if (ssh_write_knownhost(session) < 0) { + rc = ssh_session_update_known_hosts(session); + if (rc != SSH_OK) { ssh_clean_pubkey_hash(&hash); fprintf(stderr, "error %s\n", strerror(errno)); return -1;