Commit 72158ad2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Rich Gray fixed the PORT command line with the missing \r!

parent ddd3ca4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -617,7 +617,7 @@ CURLcode _ftp(struct connectdata *conn)
      sscanf( inet_ntoa(in), "%hu.%hu.%hu.%hu",
              &ip[0], &ip[1], &ip[2], &ip[3]);
#endif
      sendf(data->firstsocket, data, "PORT %d,%d,%d,%d,%d,%d\n",
      sendf(data->firstsocket, data, "PORT %d,%d,%d,%d,%d,%d\r\n",
            ip[0], ip[1], ip[2], ip[3],
            porttouse >> 8,
            porttouse & 255);