diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-01-16 03:41:03 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-01-16 03:41:03 +0000 |
commit | ef6408baf53859834afd353275550e51937c3407 (patch) | |
tree | a9aaa3f5dfd38f668016e3b6e6b041f789cebd47 | |
parent | 2dd66a8c50f85adcd210b1d482ed1d5ef6e06142 (diff) | |
download | fetchmail-ef6408baf53859834afd353275550e51937c3407.tar.gz fetchmail-ef6408baf53859834afd353275550e51937c3407.tar.bz2 fetchmail-ef6408baf53859834afd353275550e51937c3407.zip |
We deal with contibuations more directly now.
svn path=/trunk/; revision=775
-rw-r--r-- | driver.c | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -401,18 +401,6 @@ char *realname; /* real name of host */ { int newlen; - /* - * We deal with RFC822 continuation lines here. - * Replace previous '\n' with '\r' so nxtaddr - * and reply_hack will be able to see past it. - * (We know this is safe because SocketGets stripped - * out all carriage returns in the read loop above - * and we haven't reintroduced any since then.) - * We'll undo this before writing the header. - */ - if (isspace(bufp[0])) - headers[oldlen-1] = '\r'; - newlen = oldlen + strlen(bufp); headers = realloc(headers, newlen + 1); if (headers == NULL) |