diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-02-07 04:24:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-02-07 04:24:13 +0000 |
commit | b05dcddd115ff5663df1abcf8c66b8f6a25c7e20 (patch) | |
tree | 4f2a9b6d700cf8eade0905b5320660a1f1e02a1e /driver.c | |
parent | c41fbfc158e89ce22c3f906be891e5a596b39d8d (diff) | |
download | fetchmail-b05dcddd115ff5663df1abcf8c66b8f6a25c7e20.tar.gz fetchmail-b05dcddd115ff5663df1abcf8c66b8f6a25c7e20.tar.bz2 fetchmail-b05dcddd115ff5663df1abcf8c66b8f6a25c7e20.zip |
str -> chr.
svn path=/trunk/; revision=3025
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -538,7 +538,7 @@ static int readheaders(int sock, * With it, we treat such messages as though they had the missing * blank line. */ - if (!isspace(line[0]) && !strchr(line, ":")) + if (!isspace(line[0]) && !strchr(line, ':')) { headers_ok = TRUE; free(line); |