From: Wayne Davison Date: Thu, 20 Jan 2005 23:57:35 +0000 (+0000) Subject: Don't mention when the file-list is first allocated, just when it X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/8c48382049712e11691ca99a4c7583510abf1a32 Don't mention when the file-list is first allocated, just when it expands. --- diff --git a/flist.c b/flist.c index 0e787ebe..7e655820 100644 --- a/flist.c +++ b/flist.c @@ -317,7 +317,7 @@ void flist_expand(struct file_list *flist) new_ptr = realloc_array(flist->files, struct file_struct *, flist->malloced); - if (verbose >= 2) { + if (verbose >= 2 && flist->malloced != FLIST_START) { rprintf(FINFO, "[%s] expand file_list to %.0f bytes, did%s move\n", who_am_i(), (double)sizeof flist->files[0] * flist->malloced,