From: Steve Holme Date: Fri, 15 Nov 2013 20:22:01 +0000 (+0000) Subject: smtp.c: Fixed trailing whitespace X-Git-Tag: curl-7_34_0~81 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=168aa59705390326c549ed1a8d2878fd22786d04;p=thirdparty%2Fcurl.git smtp.c: Fixed trailing whitespace --- diff --git a/lib/smtp.c b/lib/smtp.c index 512d65a814..e49984e1bb 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 : "");