Use the latest F_*() accessors.

This commit is contained in:
Wayne Davison
2006-12-05 15:59:58 +00:00
parent 96293cf991
commit 112d728f48
6 changed files with 72 additions and 67 deletions

4
io.c
View File

@@ -342,13 +342,13 @@ void increment_active_files(int ndx, int itemizing, enum logcode code)
}
active_filecnt++;
active_bytecnt += the_file_list->files[ndx]->length;
active_bytecnt += F_LENGTH(the_file_list->files[ndx]);
}
void decrement_active_files(int ndx)
{
active_filecnt--;
active_bytecnt -= the_file_list->files[ndx]->length;
active_bytecnt -= F_LENGTH(the_file_list->files[ndx]);
}
/* Try to push messages off the list onto the wire. If we leave with more