[Refdb-cvs] CVS: refdb/src refdba.c,1.45.2.5,1.45.2.6
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-06-05 00:51:38
|
Update of /cvsroot/refdb/refdb/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19420 Modified Files: Tag: Release_0_9_5_stable refdba.c Log Message: fixed incorrect loop counter Index: refdba.c =================================================================== RCS file: /cvsroot/refdb/refdb/src/refdba.c,v retrieving revision 1.45.2.5 retrieving revision 1.45.2.6 diff -u -U2 -r1.45.2.5 -r1.45.2.6 --- refdba.c 21 May 2005 23:48:11 -0000 1.45.2.5 +++ refdba.c 5 Jun 2005 00:51:18 -0000 1.45.2.6 @@ -1963,5 +1963,5 @@ /* PHASE 5 */ /* signal server that this file is done */ - if (k == inargc-1) { + if (k == numcycles-1) { /* this file is done, and it was the last one */ send_status(n_sockfd, 402, TERM_NO); |