The ndx arg passed to increment_active_files() is now the unique,

over-the-wire value, making it consistent with the ndx arg that
is passed to decrement_active_files().
This commit is contained in:
Wayne Davison
2007-02-03 05:13:14 +00:00
parent 100018b7cd
commit 121bfb2b4d

2
io.c
View File

@@ -398,7 +398,7 @@ void increment_active_files(int ndx, int itemizing, enum logcode code)
}
active_filecnt++;
active_bytecnt += F_LENGTH(cur_flist->files[ndx]);
active_bytecnt += F_LENGTH(cur_flist->files[ndx - cur_flist->ndx_start]);
}
static void decrement_active_files(int ndx)