*** fetchnews.c Wed May 24 23:03:56 2000 --- fetchnews.c.new Fri May 26 20:28:02 2000 *************** *** 14,19 **** --- 14,20 ---- Modified by Cornelius Krasel . Copyright of the modifications 1998, 1999. + Patch applied: 000526 - o.rousseaux@libertysurf.fr See file COPYING for restrictions on the use of this software. */ *************** *** 678,683 **** --- 679,685 ---- if ( server > last ) { if ( verbose > 1 ) printf( "%s: no new articles\n", g->name ); + syslog( LOG_INFO, "%s: no new articles\n", g->name); return server; } *************** *** 784,791 **** /* now we have a list of articles in stufftoget[] */ /* let's get the header and possibly bodies of these */ while ( outstanding > 0 ) { ! i = outstanding-1; outstanding--; if ( !stufftoget[i] ) continue; --- 786,794 ---- /* now we have a list of articles in stufftoget[] */ /* let's get the header and possibly bodies of these */ + i = -1; while ( outstanding > 0 ) { ! i++; outstanding--; if ( !stufftoget[i] ) continue;