From 8015212d04e705b06b7914e7f1a706cede984a3b Mon Sep 17 00:00:00 2001 From: delphij Date: Fri, 27 Jun 2014 19:57:54 +0000 Subject: Always set UF_ARCHIVE on target (because they are by definition new files and should be archived) and ignore error when we can't set it (e.g. NFS). Reviewed by: ken MFC after: 2 weeks --- bin/mv/mv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/mv') diff --git a/bin/mv/mv.c b/bin/mv/mv.c index 2710f89..ee52643 100644 --- a/bin/mv/mv.c +++ b/bin/mv/mv.c @@ -337,8 +337,8 @@ err: if (unlink(to)) * on a file that we copied, i.e., that we didn't create.) */ errno = 0; - if (fchflags(to_fd, sbp->st_flags)) - if (errno != EOPNOTSUPP || sbp->st_flags != 0) + if (fchflags(to_fd, sbp->st_flags | UF_ARCHIVE)) + if (errno != EOPNOTSUPP || ((sbp->st_flags & ~UF_ARCHIVE) != 0)) warn("%s: set flags (was: 0%07o)", to, sbp->st_flags); tval[0].tv_sec = sbp->st_atime; -- cgit v1.1