From 1ab6c353635760e8e25bacc13ae0cab2f97f7338 Mon Sep 17 00:00:00 2001 From: Marc Hoersken Date: Fri, 14 Sep 2012 14:48:55 +0200 Subject: ssh.c: Fixed warning: implicit conversion from enumeration type --- lib/ssh.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index 466566c1a..e8b717273 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -639,7 +639,7 @@ static CURLcode ssh_knownhost(struct connectdata *conn) return result; } -static bool ssh_check_fingerprint(struct connectdata *conn) +static CURLcode ssh_check_fingerprint(struct connectdata *conn) { struct ssh_conn *sshc = &conn->proto.sshc; struct SessionHandle *data = conn->data; @@ -740,7 +740,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn, bool *block) * whatever) is up to us. */ result = ssh_check_fingerprint(conn); - if(!result) + if(result == CURLE_OK) state(conn, SSH_AUTHLIST); break; -- cgit v1.2.3