1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

(print_dir): Use "%s: not listing already-listed

directory", not "not listing already-listed directory: %s", to
format already-listed directories, to be consistent with other
diagnostics involving file names and colons.
This commit is contained in:
Paul Eggert
2004-12-17 05:08:40 +00:00
parent 4d2bb0f15f
commit c4e4091ea4
+1 -1
View File
@@ -2280,7 +2280,7 @@ print_dir (char const *name, char const *realname, bool command_line_arg)
we've found a loop, and do not process this directory. */
if (visit_dir (dir_stat.st_dev, dir_stat.st_ino))
{
error (0, 0, _("not listing already-listed directory: %s"),
error (0, 0, _("%s: not listing already-listed directory"),
quotearg_colon (name));
return;
}