From 03bc2d34dabf8af603283263618021185443228d Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Mon, 11 Jun 2007 04:07:51 +0000 Subject: Squelsh some warnings for libssh older than 0.1.5. --- lib/ssh.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index bb8f513b5..ff5cca002 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -310,7 +310,7 @@ CURLcode Curl_ssh_connect(struct connectdata *conn, bool *done) Curl_safefree(working_path); return CURLE_FAILED_INIT; } - + #if (LIBSSH2_APINO >= 200706012030) /* Set libssh2 to non-blocking, since cURL is all non-blocking */ libssh2_session_set_blocking(ssh->ssh_session, 0); @@ -371,7 +371,7 @@ CURLcode Curl_ssh_connect(struct connectdata *conn, bool *done) do { authlist = libssh2_userauth_list(ssh->ssh_session, ssh->user, strlen(ssh->user)); - + if (!authlist && (libssh2_session_last_errno(ssh->ssh_session) != LIBSSH2_ERROR_EAGAIN)) { libssh2_session_free(ssh->ssh_session); @@ -760,7 +760,7 @@ CURLcode Curl_scp_done(struct connectdata *conn, CURLcode status, if (scp->ssh_session) { #if (LIBSSH2_APINO >= 200706012030) - while (libssh2_session_disconnect(scp->ssh_session, "Shutdown") == + while (libssh2_session_disconnect(scp->ssh_session, "Shutdown") == LIBSSH2_ERROR_EAGAIN); #else /* !(LIBSSH2_APINO >= 200706012030) */ libssh2_session_disconnect(scp->ssh_session, "Shutdown"); @@ -774,6 +774,7 @@ CURLcode Curl_scp_done(struct connectdata *conn, CURLcode status, Curl_pgrsDone(conn); (void)status; /* unused */ + (void) rc; /* possiby unused */ return CURLE_OK; } @@ -1145,7 +1146,7 @@ CURLcode Curl_sftp_do(struct connectdata *conn, bool *done) while (res == CURLE_OK) { #if (LIBSSH2_APINO >= 200706012030) ssize_t nread; - + while ((nread = libssh2_sftp_read(data->reqdata.proto.ssh->sftp_handle, buf, BUFSIZE-1)) == LIBSSH2_ERROR_EAGAIN); #else /* !(LIBSSH2_APINO >= 200706012030) */ @@ -1265,6 +1266,7 @@ CURLcode Curl_sftp_done(struct connectdata *conn, CURLcode status, Curl_pgrsDone(conn); (void)status; /* unused */ + (void)ret; /* possibly unused */ return rc; } @@ -1702,6 +1704,8 @@ static CURLcode sftp_sendquote(struct connectdata *conn, } item = item->next; } + (void)ret; /* possibly unused */ + return CURLE_OK; } -- cgit v1.2.3