Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10 Apollo; site apollo.uucp
Path: utzoo!watmath!clyde!floyd!harpo!decvax!wivax!apollo!rees
From: rees@apollo.uucp (Jim Rees)
Newsgroups: net.news.b
Subject: Re: Hunting the wild truncation bug
Message-ID: <259@apollo.uucp>
Date: Sun, 11-Mar-84 20:18:35 EST
Article-I.D.: apollo.259
Posted: Sun Mar 11 20:18:35 1984
Date-Received: Wed, 14-Mar-84 07:46:52 EST
References: <1074@sdchema.UUCP>
Organization: Apollo Computer, Chelmsford, Mass.
Lines: 13

Oh no!  The bug fix you posted has a bug, too.  The line

		while ((c = getc(fp)) == ' ' || c == 't')	/* skip white space */

should be

		while ((c = getc(fp)) == ' ' || c == '\t')	/* skip white space */

I think this bug is pretty innocuous.  I haven't tried, but a header
continuation line that looks like this would probably trigger it:

Bug-Infested-Header: doesn't matter what goes here
    this line must start with 't'