# HG changeset patch # User bears # Date 1007906670 0 # Node ID e9d3378edec704de38ae952747f4cf49ab578b17 # Parent ffb1848a39db3d70311e351e0e86db0542b78152 [svn] * docs/Makefile.am: Add testing.txt to documents. diff -r ffb1848a39db -r e9d3378edec7 ChangeLog --- a/ChangeLog Sun Dec 09 12:31:57 2001 +0000 +++ b/ChangeLog Sun Dec 09 14:04:30 2001 +0000 @@ -6,10 +6,13 @@ Cont_write. Also ensure cont.first isn't polluted in the event of a failed update. * src/client.c,src/control.c,src/fetch.c,src/noffle.c,src/post.c, - src/pseudo.c, + src/pseudo.c: If Cont_write fails, don't do subsequent actions that + rely on it having worked. Typically this will be updating the + first/last article nos in the group database. * src/server.c: If groupinfo.lastupdate is unreadable or corrupt, spot this and report it and give an explicit error when processing NNTP NEWGROUPS command. +* docs/Makefile.am: Add testing.txt to documents. Sun Dec 9 2001 Jim Hague diff -r ffb1848a39db -r e9d3378edec7 docs/Makefile.am --- a/docs/Makefile.am Sun Dec 09 12:31:57 2001 +0000 +++ b/docs/Makefile.am Sun Dec 09 14:04:30 2001 +0000 @@ -2,18 +2,20 @@ man_MANS = $(PACKAGE).1 $(PACKAGE).conf.5 -EXTRA_DIST = INTERNALS FAQ NOTES ${man_MANS} $(PACKAGE).lsm +EXTRA_DIST = INTERNALS FAQ NOTES testing.txt ${man_MANS} $(PACKAGE).lsm install-data-local: $(INSTALL) -o 0 -g 0 -d $(DOCDIR) $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INTERNALS $(DOCDIR) $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/FAQ $(DOCDIR) $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NOTES $(DOCDIR) + $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/testing.txt $(DOCDIR) $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/$(PACKAGE).lsm $(DOCDIR) uninstall-local: rm -f $(DOCDIR)/INTERNALS rm -f $(DOCDIR)/FAQ rm -f $(DOCDIR)/NOTES + rm -f $(DOCDIR)/testing.txt rm -f $(DOCDIR)/$(PACKAGE).lsm