smtp.c: Added extra comments around SMTP_STOP state change

Provided extra comments in the SMTP module following previous IMAP fix.
This commit is contained in:
Steve Holme 2012-12-29 19:28:32 +00:00
parent 488245f99c
commit c43af566fa
1 changed files with 2 additions and 0 deletions

View File

@ -1086,6 +1086,7 @@ static CURLcode smtp_state_data_resp(struct connectdata *conn,
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, /* no download */
FIRSTSOCKET, smtp->bytecountp);
/* End of do phase */
state(conn, SMTP_STOP);
return CURLE_OK;
@ -1104,6 +1105,7 @@ static CURLcode smtp_state_postdata_resp(struct connectdata *conn,
if(smtpcode != 250)
result = CURLE_RECV_ERROR;
/* End of done phase */
state(conn, SMTP_STOP);
return result;