smtp: Fixed broken RCPT TO from commit 0ea4a80bb2

This commit is contained in:
Steve Holme 2013-11-15 22:20:56 +00:00
parent 5d040632ac
commit eedca5055e
1 changed files with 4 additions and 3 deletions

View File

@ -1349,12 +1349,13 @@ static CURLcode smtp_state_rcpt_resp(struct connectdata *conn, int smtpcode,
if(smtp->rcpt)
/* Send the next RCPT TO command */
result = smtp_perform_rcpt_to(conn);
else
else {
/* Send the DATA command */
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "DATA");
if(!result)
state(conn, SMTP_DATA);
if(!result)
state(conn, SMTP_DATA);
}
}
return result;