aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-07 04:24:13 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-02-07 04:24:13 +0000
commitb05dcddd115ff5663df1abcf8c66b8f6a25c7e20 (patch)
tree4f2a9b6d700cf8eade0905b5320660a1f1e02a1e /driver.c
parentc41fbfc158e89ce22c3f906be891e5a596b39d8d (diff)
downloadfetchmail-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index d6223f12..9ed51462 100644
--- a/driver.c
+++ b/driver.c
@@ -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);