From 10be4ec2c3f39f377ce3a97e05e5ea0d92f24d44 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Fri, 12 Dec 2014 21:06:01 +0000 Subject: smtp.c: Fixed line longer than 79 columns --- lib/smtp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/smtp.c') diff --git a/lib/smtp.c b/lib/smtp.c index 7b0080606..333565955 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -2372,7 +2372,8 @@ CURLcode Curl_smtp_escape_eob(struct connectdata *conn, const ssize_t nread) /* Do we have a match for CRLF. as per RFC-5321, sect. 4.5.2 */ if(SMTP_EOB_FIND_LEN == smtp->eob) { /* Copy the replacement data to the target buffer */ - memcpy(&scratch[si], SMTP_EOB_REPL + eob_sent, SMTP_EOB_REPL_LEN - eob_sent); + memcpy(&scratch[si], SMTP_EOB_REPL + eob_sent, + SMTP_EOB_REPL_LEN - eob_sent); si += SMTP_EOB_REPL_LEN - eob_sent; smtp->eob = 0; eob_sent = 0; -- cgit v1.2.3