1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

smtp.c: Fixed trailing whitespace

This commit is contained in:
Steve Holme 2013-11-15 20:22:01 +00:00
parent f71b1ad908
commit 168aa59705

View File

@ -563,7 +563,7 @@ static CURLcode smtp_perform_command(struct connectdata *conn)
struct SessionHandle *data = conn->data; struct SessionHandle *data = conn->data;
struct SMTP *smtp = data->req.protop; struct SMTP *smtp = data->req.protop;
if(smtp->custom && smtp->custom[0] != '\0') if(smtp->custom && smtp->custom[0] != '\0')
/* Send the custom command */ /* Send the custom command */
result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s %s", smtp->custom, result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s %s", smtp->custom,
smtp->rcpt ? smtp->rcpt->data : ""); smtp->rcpt ? smtp->rcpt->data : "");