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: News 2.10 tries to ungetc(EOF)
Message-ID: <251@apollo.uucp>
Date: Mon, 27-Feb-84 12:32:26 EST
Article-I.D.: apollo.251
Posted: Mon Feb 27 12:32:26 1984
Date-Received: Tue, 28-Feb-84 12:49:58 EST
Organization: Apollo Computer, Chelmsford, Mass.
Lines: 11

In ifuncs.c, routine checkbatch(), the line

	ungetc(c, stdin);

should be changed to

	if (c != EOF)
		ungetc(c, stdin);

Otherwise you end up with a rubout in the article if the length
is zero (as in control messages).