diff src/pseudo.c @ 155:22b81617d427 noffle

[svn] applied patch from Matija Nalis: better handling of inconsistent counters at remote server; do not read overview on each group command
author enz
date Tue, 05 Dec 2000 19:50:09 +0000
parents 160a0af71cf8
children 24d4cd032da5
line wrap: on
line diff
--- a/src/pseudo.c	Tue Dec 05 19:30:50 2000 +0000
+++ b/src/pseudo.c	Tue Dec 05 19:50:09 2000 +0000
@@ -1,7 +1,7 @@
 /*
   pseudo.c
   
-  $Id: pseudo.c 111 2000-05-19 15:13:44Z bears $
+  $Id: pseudo.c 236 2000-12-05 19:50:09Z enz $
 */
 
 #if HAVE_CONFIG_H
@@ -250,7 +250,7 @@
 }
 
 void
-Pseudo_cntInconsistent( const char *grp, int first, int last, int next )
+Pseudo_cntInconsistent( const char *grp, int first, int last, int next, int refetch )
 {
     DynStr *info;
     Str s;
@@ -272,6 +272,8 @@
         DynStr_appLn( info, s );
         snprintf( s, MAXCHAR, "Remote next article number: %i", next );
         DynStr_appLn( info, s );
+        snprintf( s, MAXCHAR, "Refetching from article: %i", refetch );
+        DynStr_appLn( info, s );
         genPseudo( "Article counter inconsistent", DynStr_str( info ) );
     }
     del_DynStr( info );