diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-11-15 20:22:01 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-11-15 20:43:04 +0000 |
commit | 168aa59705390326c549ed1a8d2878fd22786d04 (patch) | |
tree | ed809c68e3f0234c0c0345752f59c81d797611be | |
parent | f71b1ad908972b6c41ec174c9a85c3cd6b4893fe (diff) |
smtp.c: Fixed trailing whitespace
-rw-r--r-- | lib/smtp.c | 2 |
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 : ""); |