From b05dcddd115ff5663df1abcf8c66b8f6a25c7e20 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 7 Feb 2001 04:24:13 +0000 Subject: str -> chr. svn path=/trunk/; revision=3025 --- driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3