diff options
| author | Wayne Davison <wayned@samba.org> | 2006-12-05 15:59:58 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-12-05 15:59:58 +0000 |
| commit | 112d728f4858fef5c75e0b25bf6f02af8aa5b83c (patch) | |
| tree | 44e0207a29a62b61f839e0a0a27dfc8385b09249 /io.c | |
| parent | 96293cf991fc9b550f48c08af74d834723a00a3a (diff) | |
| download | android_external_rsync-112d728f4858fef5c75e0b25bf6f02af8aa5b83c.tar.gz android_external_rsync-112d728f4858fef5c75e0b25bf6f02af8aa5b83c.tar.bz2 android_external_rsync-112d728f4858fef5c75e0b25bf6f02af8aa5b83c.zip | |
Use the latest F_*() accessors.
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
