aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-06-28 21:00:04 +0000
committerBruce Evans <bde@FreeBSD.org>1998-06-28 21:00:04 +0000
commitfe6f0b08248cb22e0574d5d69ee75a43dcb2ba84 (patch)
treed31cb44f75c6a75a165ff9543ad5c2a98d8cb7d0 /bin
parentba198492adc11a34b362f74d219a72dbe2bfd682 (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/mv/mv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/mv/mv.c b/bin/mv/mv.c
index 20f4a27bb08d6..27182857d8e79 100644
--- a/bin/mv/mv.c
+++ b/bin/mv/mv.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)mv.c 8.2 (Berkeley) 4/2/94";
#endif
static const char rcsid[] =
- "$Id: mv.c,v 1.19 1998/05/25 22:44:16 steve Exp $";
+ "$Id: mv.c,v 1.20 1998/06/09 03:39:38 imp Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -272,8 +272,8 @@ err: if (unlink(to))
oldmode = sbp->st_mode & ALLPERMS;
if (fchown(to_fd, sbp->st_uid, sbp->st_gid)) {
- warn("%s: set owner/group (was: %u/%u)", to, sbp->st_uid,
- sbp->st_gid);
+ warn("%s: set owner/group (was: %lu/%lu)", to,
+ (u_long)sbp->st_uid, (u_long)sbp->st_gid);
if (oldmode & (S_ISUID | S_ISGID)) {
warnx(
"%s: owner/group changed; clearing suid/sgid (mode was 0%03o)",