[net.news.b] News 2.10 tries to ungetc

rees@apollo.uucp (Jim Rees) (02/27/84)

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).