Commit 23245ca8 authored by Yang Tse's avatar Yang Tse
Browse files

ftp: fix 'bool' data type implementation dependant usage

parent 35908749
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -3978,9 +3978,9 @@ CURLcode ftp_parse_url_path(struct connectdata *conn)
    else {
    else {
      /* parse the URL path into separate path components */
      /* parse the URL path into separate path components */
      while((slash_pos = strchr(cur_pos, '/')) != NULL) {
      while((slash_pos = strchr(cur_pos, '/')) != NULL) {
        /* 1 or 0 to indicate absolute directory */
        /* 1 or 0 pointer offset to indicate absolute directory */
        bool absolute_dir = (bool)((cur_pos - data->state.path > 0) &&
        ssize_t absolute_dir = ((cur_pos - data->state.path > 0) &&
                                   (ftpc->dirdepth == 0));
                                (ftpc->dirdepth == 0))?1:0;


        /* seek out the next path component */
        /* seek out the next path component */
        if(slash_pos-cur_pos) {
        if(slash_pos-cur_pos) {