From 651254dcc713d0f53375f8abc0885a8d2ba0389f Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Mon, 15 Apr 2013 20:11:25 +0100 Subject: smtp: Updated the coding style of smtp_state_servergreet_resp() Updated the coding style, in this function, to be consistant with other response functions rather then performing a hard return on failure. --- lib/smtp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/smtp.c') diff --git a/lib/smtp.c b/lib/smtp.c index 49da078ef..fd86a95ba 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -509,10 +509,10 @@ static CURLcode smtp_state_servergreet_resp(struct connectdata *conn, if(smtpcode/100 != 2) { failf(data, "Got unexpected smtp-server response: %d", smtpcode); - return CURLE_FTP_WEIRD_SERVER_REPLY; + result = CURLE_FTP_WEIRD_SERVER_REPLY; } - - result = smtp_state_ehlo(conn); + else + result = smtp_state_ehlo(conn); return result; } -- cgit v1.2.3