diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-12-04 10:11:28 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-12-04 10:11:28 +0000 |
commit | 5646ad643cb1b9e1a9fe743b410c5d46ae5f6b33 (patch) | |
tree | 88338355bd63873684389f2464ac7cf6381e01ee /transact.c | |
parent | 15c492a8f8227ff79f76f23df7e448b8ef4dd6b3 (diff) | |
download | fetchmail-5646ad643cb1b9e1a9fe743b410c5d46ae5f6b33.tar.gz fetchmail-5646ad643cb1b9e1a9fe743b410c5d46ae5f6b33.tar.bz2 fetchmail-5646ad643cb1b9e1a9fe743b410c5d46ae5f6b33.zip |
Better handling of malformed messages.
svn path=/trunk/; revision=3552
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -483,7 +483,7 @@ int readheaders(int sock, */ if (!isspace(line[0]) && !strchr(line, ':')) { - headers_ok = TRUE; + headers_ok = FALSE; has_nuls = (linelen != strlen(line)); free(line); goto process_headers; |