aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/smtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index 512d65a81..e49984e1b 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -563,7 +563,7 @@ static CURLcode smtp_perform_command(struct connectdata *conn)
struct SessionHandle *data = conn->data;
struct SMTP *smtp = data->req.protop;
- if(smtp->custom && smtp->custom[0] != '\0')
+ if(smtp->custom && smtp->custom[0] != '\0')
/* Send the custom command */
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s %s", smtp->custom,
smtp->rcpt ? smtp->rcpt->data : "");