1
0
mirror of https://github.com/moparisthebest/curl synced 2024-10-31 15:45:12 -04:00

pop3.c: Fixed unnecessary state change if starttls fails

The state machine should only be changed to POP3_STARTTLS when the
STLS command has been successfully sent to the server.
This commit is contained in:
Steve Holme 2013-01-27 10:42:32 +00:00
parent 499e30c4bb
commit 3dbf11d0a1

View File

@ -542,6 +542,7 @@ static CURLcode pop3_state_servergreet_resp(struct connectdata *conn,
/* We don't have a SSL/TLS connection yet, but SSL is requested. Switch /* We don't have a SSL/TLS connection yet, but SSL is requested. Switch
to TLS connection now */ to TLS connection now */
result = Curl_pp_sendf(&pop3c->pp, "STLS"); result = Curl_pp_sendf(&pop3c->pp, "STLS");
if(!result)
state(conn, POP3_STARTTLS); state(conn, POP3_STARTTLS);
} }
else else