mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
25 lines
602 B
Plaintext
25 lines
602 B
Plaintext
--- articles.c.orig Sun Nov 9 18:14:49 1997
|
|
+++ articles.c Sun Nov 9 18:16:40 1997
|
|
@@ -348,6 +348,10 @@
|
|
case OK_ARTICLE:
|
|
fetch_article ();
|
|
xfrart++;
|
|
+#ifdef KEEPMISSINGARTS
|
|
+ /* Note that this article has been retrieved and filed */
|
|
+ idnode -> used = TRUE;
|
|
+#endif /* KEEPMISSINGARTS */
|
|
break;
|
|
|
|
/* Otherwise must be a protocol error */
|
|
@@ -358,8 +362,10 @@
|
|
exit (4);
|
|
}
|
|
|
|
+#ifndef KEEPMISSINGARTS
|
|
/* Note that this article has been retrieved and filed */
|
|
idnode -> used = TRUE;
|
|
+#endif /* KEEPMISSINGARTS */
|
|
|
|
/* Print progress if required */
|
|
if (progress_flag)
|