From 47a2e7569ca018013585651e880dab4e7a4dc31d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 11 Dec 2001 11:47:54 +0000 Subject: (main): Include the word `fail' in some diagnostics to make it clearer that they indicate a failure. s/getting attributes/failed to get attributes/ --- src/chown.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/chown.c b/src/chown.c index d7f3c982c..9a602d302 100644 --- a/src/chown.c +++ b/src/chown.c @@ -217,7 +217,8 @@ main (int argc, char **argv) struct stat ref_stats; if (stat (reference_file, &ref_stats)) - error (1, errno, _("getting attributes of %s"), quote (reference_file)); + error (1, errno, _("failed to get attributes of %s"), + quote (reference_file)); uid = ref_stats.st_uid; gid = ref_stats.st_gid; -- cgit v1.2.3-54-g00ecf