From: Martin Pool Date: Fri, 25 Jan 2002 10:12:36 +0000 (+0000) Subject: With -vv, when the file list grows, show a message. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1d5a1da9f82f71e42e1609a4f91ef9020855be4b?hp=2e7d19945c6fa8ff4a2dbd4561cc499e94ac56c4 With -vv, when the file list grows, show a message. --- diff --git a/flist.c b/flist.c index 8ec488c6..dd4073db 100644 --- a/flist.c +++ b/flist.c @@ -291,7 +291,7 @@ static void flist_expand(struct file_list *flist) new_ptr = realloc(flist->files, new_bytes); - if (verbose > 2) { + if (verbose >= 2) { rprintf(FINFO, RSYNC_NAME ": expand file_list to %.0f bytes, did%s move\n", (double) new_bytes, (new_ptr == flist->files) ? " not" : "");