From df5a94d44524d3da7a3753b0055b9809ad29b18d Mon Sep 17 00:00:00 2001 From: Patrick Spendrin Date: Sat, 8 May 2010 18:36:57 +0200 Subject: [PATCH] The lower function doesn't have the prefix. Signed-off-by: Andreas Schneider --- libssh/keyfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c index af748046..eaecc979 100644 --- a/libssh/keyfiles.c +++ b/libssh/keyfiles.c @@ -1687,7 +1687,7 @@ int ssh_write_knownhost(ssh_session session) { return SSH_ERROR; } - host = ssh_lowercase(session->host); + host = lowercase(session->host); /* If using a nonstandard port, save the host in the [host]:port format */ if(session->port != 22){ hostport = ssh_hostport(host,session->port);