]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main):
authorJim Meyering <jim@meyering.net>
Tue, 11 Dec 2001 11:49:36 +0000 (11:49 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 11 Dec 2001 11:49:36 +0000 (11:49 +0000)
Include the word `fail' in some diagnostics to make it clearer
that they indicate a failure.
s/getting attributes/failed to get attributes/

src/chgrp.c

index a827f754860947ed17b1045ed9d7e6a4b6a6054e..aea989235ab2f43cd5d95743c09e1d9c4dcb8c46 100644 (file)
@@ -215,7 +215,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));
 
       chopt.group_name = gid_to_name (ref_stats.st_gid);
       gid = ref_stats.st_gid;