1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 02:06:40 +02:00
Include the word `fail' in some diagnostics to make it clearer
that they indicate a failure.
s/getting attributes/failed to get attributes/
This commit is contained in:
Jim Meyering
2001-12-11 11:47:54 +00:00
parent d5654c49bd
commit 47a2e7569c
+2 -1
View File
@@ -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;