#endif
/* send USER */
- FTPSENDF(conn, "USER %s", ftp->user);
+ FTPSENDF(conn, "USER %s", ftp->user?ftp->user:"");
/* wait for feedback */
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
else if(ftpcode == 331) {
/* 331 Password required for ...
(the server requires to send the user's password too) */
- FTPSENDF(conn, "PASS %s", ftp->passwd);
+ FTPSENDF(conn, "PASS %s", ftp->passwd?ftp->passwd:"");
result = Curl_GetFTPResponse(&nread, conn, &ftpcode);
if(result)
return result;