aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/smtp.c6
1 files changed, 3 insertions, 3 deletions
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;
}