From 048e49762740db031bdf163c0bf6f0e1a71fbdfa Mon Sep 17 00:00:00 2001 From: Stephen McKay Date: Tue, 11 Dec 2001 13:14:15 +0000 Subject: [PATCH] Typo in warning message (chown should be chmod). --- bin/cp/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/cp/utils.c b/bin/cp/utils.c index 6f5ed4098f9..adc04a72770 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -293,7 +293,7 @@ setfile(fs, fd) if (!gotstat || fs->st_mode != ts.st_mode) if (fd ? fchmod(fd, fs->st_mode) : chmod(to.p_path, fs->st_mode)) { - warn("chown: %s", to.p_path); + warn("chmod: %s", to.p_path); rval = 1; }