Commit 72061813 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

David McCreedy found a missing return code assignment

parent 3f22901a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2398,7 +2398,7 @@ static CURLcode ftp_statemach_act(struct connectdata *conn)
        state(conn, FTP_AUTH);
      }
      else {
        ftp_state_user(conn);
        result = ftp_state_user(conn);
        if(result)
          return result;
      }