]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
With -vv, when the file list grows, show a message.
authorMartin Pool <mbp@samba.org>
Fri, 25 Jan 2002 10:12:36 +0000 (10:12 +0000)
committerMartin Pool <mbp@samba.org>
Fri, 25 Jan 2002 10:12:36 +0000 (10:12 +0000)
flist.c

diff --git a/flist.c b/flist.c
index 8ec488c6968edd7d9a35d746661ee68f4ca26107..dd4073dbe87819c489d012597b170dca1dd90e98 100644 (file)
--- 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" : "");