Commit 173f12db authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

added a typecast to shut up a VC++ warning when converting from long

to unsigned short
parent 983e3ae8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -860,7 +860,8 @@ CURLcode _ftp(struct connectdata *conn)
         * previous lookup.
         */
        he = conn->hp;
        connectport = data->port; /* we connect to the proxy's port */
        connectport =
          (unsigned short)data->port; /* we connect to the proxy's port */
      }
      else {
        /* normal, direct, ftp connection */