fix compiler warnings: 'enumerated type mixed with another type'

This commit is contained in:
Yang Tse 2008-02-19 15:07:50 +00:00
parent c9eb41c056
commit d2125cf501
1 changed files with 7 additions and 6 deletions

View File

@ -234,6 +234,9 @@ static CURLcode sftp_libssh2_error_to_CURLE(unsigned long err)
case LIBSSH2_FX_OK:
return CURLE_OK;
case LIBSSH2_ERROR_ALLOC:
return CURLE_OUT_OF_MEMORY;
case LIBSSH2_FX_NO_SUCH_FILE:
case LIBSSH2_FX_NO_SUCH_PATH:
return CURLE_REMOTE_FILE_NOT_FOUND;
@ -1206,7 +1209,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
failf(data, "Upload failed: %s", sftp_libssh2_strerror(err));
if(sshc->secondCreateDirs) {
state(conn, SSH_SFTP_CLOSE);
sshc->actualcode = err;
sshc->actualcode = sftp_libssh2_error_to_CURLE(err);
break;
}
else if(((err == LIBSSH2_FX_NO_SUCH_FILE) ||
@ -1415,7 +1418,7 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
}
else if(sshc->readdir_len <= 0) {
err = libssh2_sftp_last_error(sshc->sftp_session);
sshc->actualcode = err;
sshc->actualcode = sftp_libssh2_error_to_CURLE(err);
failf(data, "Could not open remote file for reading: %s :: %d",
sftp_libssh2_strerror(err),
libssh2_session_last_errno(sshc->ssh_session));
@ -1647,10 +1650,9 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
ssh_err = libssh2_session_last_error(sshc->ssh_session,
&err_msg, NULL, 0);
err = libssh2_session_error_to_CURLE(ssh_err);
failf(conn->data, "%s", err_msg);
state(conn, SSH_SCP_CHANNEL_FREE);
sshc->actualcode = err;
sshc->actualcode = libssh2_session_error_to_CURLE(ssh_err);
break;
}
}
@ -1694,10 +1696,9 @@ static CURLcode ssh_statemach_act(struct connectdata *conn)
ssh_err = libssh2_session_last_error(sshc->ssh_session,
&err_msg, NULL, 0);
err = libssh2_session_error_to_CURLE(ssh_err);
failf(conn->data, "%s", err_msg);
state(conn, SSH_SCP_CHANNEL_FREE);
sshc->actualcode = err;
sshc->actualcode = libssh2_session_error_to_CURLE(ssh_err);
break;
}
}