From: Wayne Davison Date: Wed, 4 Feb 2004 03:52:51 +0000 (+0000) Subject: Delay the output the (verbose > 3) list of files until we've had a X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/cefed3e8dc9488adb86ae9be4471641ece53cfa2 Delay the output the (verbose > 3) list of files until we've had a chance to map the uid/gid info in the receiver. --- diff --git a/flist.c b/flist.c index 22f688d1..5044fb53 100644 --- a/flist.c +++ b/flist.c @@ -73,6 +73,7 @@ static char empty_sum[MD4_SUM_LENGTH]; static unsigned int min_file_struct_len; static void clean_flist(struct file_list *flist, int strip_root, int no_dups); +static void output_flist(struct file_list *flist); void init_flist(void) @@ -1190,6 +1191,9 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) write_batch_flist_info(flist->count, flist->files); } + if (verbose > 3) + output_flist(flist); + if (verbose > 2) rprintf(FINFO, "send_file_list done\n"); @@ -1265,6 +1269,9 @@ struct file_list *recv_file_list(int f) } } + if (verbose > 3) + output_flist(flist); + if (list_only) { int i; for (i = 0; i < flist->count; i++) @@ -1429,18 +1436,21 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups) } } } +} - if (verbose <= 3) - return; +static void output_flist(struct file_list *flist) +{ + char uidbuf[16], gidbuf[16]; + struct file_struct *file; + int i; for (i = 0; i < flist->count; i++) { - char uidbuf[16], gidbuf[16]; - struct file_struct *file = flist->files[i]; + file = flist->files[i]; if (am_root && preserve_uid) sprintf(uidbuf, " uid=%ld", (long)file->uid); else *uidbuf = '\0'; - if (preserve_gid) + if (preserve_gid && file->gid != GID_NONE) sprintf(gidbuf, " gid=%ld", (long)file->gid); else *gidbuf = '\0';