]> granicus.if.org Git - curl/commitdiff
smtp.c: Fixed line longer than 79 columns
authorSteve Holme <steve_holme@hotmail.com>
Fri, 12 Dec 2014 21:06:01 +0000 (21:06 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Fri, 12 Dec 2014 21:23:11 +0000 (21:23 +0000)
lib/smtp.c

index 7b008060669599c7a1694681c4002103e970dcdb..333565955742d9aa7fa7a54599f66093dfdb36ce 100644 (file)
@@ -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;