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

This commit is contained in:
Daniel Stenberg 2000-06-20 07:45:53 +00:00
parent ddd3ca4e5a
commit 72158ad2cf

View File

@ -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);