From 168aa59705390326c549ed1a8d2878fd22786d04 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Fri, 15 Nov 2013 20:22:01 +0000 Subject: [PATCH] smtp.c: Fixed trailing whitespace --- lib/smtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 : "");