[net.news.b] Another inews

ggr@pyuxmm.UUCP (06/15/83)

The symptoms of this one are that if you are running with AUTONEWNG
and an article arrives for a group new to that machine, the
article is inserted correctly into the local database, but if
the article happened to be a followup, it never gets distributed
to the machine's neighbors.  The changes below to inews.c
(don't trust the line numbers) fix this.
				=== Guy Riddle == BTL Piscataway ===

407c407
< 	if (!is_ctl && header.followid[0] == '\0')
---
> 	if (mode != PROC && !is_ctl && header.followid[0] == '\0')
635,644c635,645
< 			if (!exists(bfr)) {
< #ifdef AUTONEWNG
< 				mknewsg(bfr, ptr);
< #else
< 				getapproval(ptr);
< 				badgroup++;
< #endif
< 			}
< 			else
< 				goodgroup++;
---
> 			if (!exists(bfr)) {
> #ifdef AUTONEWNG
> 				mknewsg(bfr, ptr);
> 				goodgroup++;
> #else
> 				getapproval(ptr);
> 				badgroup++;
> #endif
> 			}
> 			else
> 				goodgroup++;