pop3: Updated the coding style of pop3_state_servergreet_resp()

Updated the coding style, in this function, to be consistent with other
response functions rather then performing a hard return on failure.
This commit is contained in:
Steve Holme 2013-04-15 20:10:25 +01:00
parent 02dc9e788f
commit 26bdafcbf9
1 changed files with 3 additions and 3 deletions

View File

@ -700,10 +700,10 @@ static CURLcode pop3_state_servergreet_resp(struct connectdata *conn,
if(pop3code != '+') {
failf(data, "Got unexpected pop3-server response");
return CURLE_FTP_WEIRD_SERVER_REPLY;
result = CURLE_FTP_WEIRD_SERVER_REPLY;
}
result = pop3_perform_capa(conn);
else
result = pop3_perform_capa(conn);
return result;
}