aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Spendrin <ps_ml@gmx.de>2010-05-08 18:36:57 +0200
committerAndreas Schneider <mail@cynapses.org>2010-05-10 10:48:03 +0200
commitdf5a94d44524d3da7a3753b0055b9809ad29b18d (patch)
tree8d2ceee56605aeee75a6290b737505a5cae2c068
parent4bfe7f024caad27a09b148a053da01ed1ac04fa1 (diff)
downloadlibssh-df5a94d44524d3da7a3753b0055b9809ad29b18d.tar.gz
libssh-df5a94d44524d3da7a3753b0055b9809ad29b18d.tar.xz
libssh-df5a94d44524d3da7a3753b0055b9809ad29b18d.zip
The lower function doesn't have the prefix.
Signed-off-by: Andreas Schneider <mail@cynapses.org>
-rw-r--r--libssh/keyfiles.c2
1 files changed, 1 insertions, 1 deletions
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);