Commit 9e3f5443 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

made the code deal with empty name and password

parent 3d599341
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -483,7 +483,7 @@ CURLcode Curl_ftp_connect(struct connectdata *conn)
#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);
@@ -499,7 +499,7 @@ CURLcode Curl_ftp_connect(struct connectdata *conn)
  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;