Commit d2125cf5 authored by Yang Tse's avatar Yang Tse
Browse files

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

parent c9eb41c0
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -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;
      }
    }