From ce37eb2d8331e1e951349487de7fcd16cd5afce6 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 3 Feb 2004 20:00:35 +0000 Subject: [PATCH] If verbose > 2, mention it if we're setting the uid or the gid. --- rsync.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/rsync.c b/rsync.c index df52b698..78fedab6 100644 --- a/rsync.c +++ b/rsync.c @@ -158,6 +158,18 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, change_gid = preserve_gid && file->gid != GID_NONE && st->st_gid != file->gid; if (change_uid || change_gid) { + if (verbose > 2 && !dry_run) { + if (change_uid) { + rprintf(FINFO, + "set uid of %s from %ld to %ld\n", + fname, (long)st->st_uid, (long)file->uid); + } + if (change_gid) { + rprintf(FINFO, + "set gid of %s from %ld to %ld\n", + fname, (long)st->st_gid, (long)file->gid); + } + } if (do_lchown(fname, change_uid?file->uid:st->st_uid, change_gid?file->gid:st->st_gid) != 0) { -- 2.34.1