email: Minor code tidy up following recent changes

Removed unwanted braces and added variable initialisation.
This commit is contained in:
Steve Holme
2013-03-07 22:44:10 +00:00
parent b99c9f7c7f
commit cc890906b1
3 changed files with 4 additions and 7 deletions

View File

@@ -1262,9 +1262,8 @@ static CURLcode pop3_block_statemach(struct connectdata *conn)
CURLcode result = CURLE_OK;
struct pop3_conn *pop3c = &conn->proto.pop3c;
while(pop3c->state != POP3_STOP && !result) {
while(pop3c->state != POP3_STOP && !result)
result = Curl_pp_statemach(&pop3c->pp, TRUE);
}
return result;
}