From: Jim Meyering Date: Tue, 11 Dec 2001 11:48:21 +0000 (+0000) Subject: (change_file_owner): X-Git-Tag: FILEUTILS-4_1_4~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92c8fc20fb033cecfda35565b798283c493af578;p=thirdparty%2Fcoreutils.git (change_file_owner): Include the word `fail' in some diagnostics to make it clearer that they indicate a failure. s/getting attributes/failed to get attributes/ --- diff --git a/src/chown-core.c b/src/chown-core.c index 90729737fd..effe6f0a37 100644 --- a/src/chown-core.c +++ b/src/chown-core.c @@ -233,7 +233,7 @@ change_file_owner (int cmdline_arg, const char *file, uid_t uid, gid_t gid, if (lstat (file, &file_stats)) { if (chopt->force_silent == 0) - error (0, errno, _("getting attributes of %s"), quote (file)); + error (0, errno, _("failed to get attributes of %s"), quote (file)); return 1; } @@ -245,7 +245,7 @@ change_file_owner (int cmdline_arg, const char *file, uid_t uid, gid_t gid, && stat (file, &file_stats)) { if (chopt->force_silent == 0) - error (0, errno, _("getting attributes of %s"), quote (file)); + error (0, errno, _("failed to get attributes of %s"), quote (file)); return 1; }