Path: utzoo!mnetor!uunet!lll-winken!lll-tis!ames!ncar!woods From: woods@ncar.ucar.edu (Greg Woods) Newsgroups: comp.bugs.misc Subject: bug in NNTP/inews makefile Message-ID: <23@ncar.ucar.edu> Date: 17 Mar 88 17:45:26 GMT Organization: Scientific Computing Divison/NCAR, Boulder CO Lines: 15 Summary: inews.o: ../common/conf.h Problem: In remaking NNTP client stuff to access a different server, the posting software wrongly continues to access the old server. Repeat-By: Edit common/conf.h and rrn/config.h to change NNTP server hosts on an NNTP client machine. Remake everything, and see that reading works fine off the new server but posting is still trying to access the old server. Fix: In inews/makefile, there should be a dependency line showing that inews.o depends on ../common/conf.h, because inews.c contains a reference to the macro SERVER_HOST which is defined there. Thus when we changed the server host, inews.c was never recompiled and it needed to be. --Greg