X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d9d6bc5278f96c2327fafa697324c8fc90142dbc..5d2c5c4c7338004528d8df111e37fd992622e092:/flist.c diff --git a/flist.c b/flist.c index 7f57d377..0761497e 100644 --- a/flist.c +++ b/flist.c @@ -95,6 +95,12 @@ static void finish_build_progress(const struct file_list *flist) } +void show_flist_stats(void) +{ + /* Nothing yet */ +} + + static struct string_area *string_area_new(int size) { struct string_area *a; @@ -1003,6 +1009,8 @@ struct file_list *recv_file_list(int f) for (flags = read_byte(f); flags; flags = read_byte(f)) { + int i = flist->count; + flist_expand(flist); receive_file_entry(&flist->files[i], flags, f);