diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-30 21:28:08 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-30 21:28:08 +0000 |
commit | fadbd8cc4920ad96a14b01e3ca8730948e4d7241 (patch) | |
tree | 1f29eba0b84f2003583fb4b9a7a06510c9a84b07 /driver.c | |
parent | f9b111e07d568304c3f5e725e96107e47fb93d9c (diff) | |
download | fetchmail-fadbd8cc4920ad96a14b01e3ca8730948e4d7241.tar.gz fetchmail-fadbd8cc4920ad96a14b01e3ca8730948e4d7241.tar.bz2 fetchmail-fadbd8cc4920ad96a14b01e3ca8730948e4d7241.zip |
Comment improvements.
svn path=/trunk/; revision=846
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -766,7 +766,7 @@ char *realname; /* real name of host */ skiptext:; } - /* write all the headers */ + /* we may need to strip carriage returns */ if (ctl->stripcr) { char *sp, *tp; @@ -846,7 +846,7 @@ char *realname; /* real name of host */ strcat(errmsg, "\n"); - /* ship out the error line */ + /* we may need to strip carriage returns */ if (ctl->stripcr) { char *sp, *tp; @@ -857,6 +857,7 @@ char *realname; /* real name of host */ *tp = '\0'; } + /* ship out the error line */ if (sinkfp) { if (ctl->mda) @@ -916,6 +917,7 @@ char *realname; /* real name of host */ else SockWrite(buf, 1, 1, sinkfp); + /* we may need to strip carriage returns */ if (ctl->stripcr) { char *sp, *tp; @@ -926,6 +928,7 @@ char *realname; /* real name of host */ *tp = '\0'; } + /* ship the text line */ if (ctl->mda) n = fwrite(buf, 1, strlen(buf), sinkfp); else if (sinkfp) |