summaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-12-12 21:06:01 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-12-12 21:23:11 +0000
commit10be4ec2c3f39f377ce3a97e05e5ea0d92f24d44 (patch)
tree7f8e235bc587ef281732a16c2f0a34621f122459 /lib/smtp.c
parentbd2231104be563684aa48cd43ab2ed2d1ee4c5b4 (diff)
downloadcurl-10be4ec2c3f39f377ce3a97e05e5ea0d92f24d44.tar.gz
smtp.c: Fixed line longer than 79 columns
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c3
1 files changed, 2 insertions, 1 deletions
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;