From: Jim Meyering Date: Sun, 28 Nov 2004 21:29:16 +0000 (+0000) Subject: (main): Appease the gods. X-Git-Tag: v5.3.0~284 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c272386d5dd143fb515a85965ae3762357749e18;p=thirdparty%2Fcoreutils.git (main): Appease the gods. --- diff --git a/lib/chdir.c b/lib/chdir.c index 1e73e1e1ef..56cbb24ce9 100644 --- a/lib/chdir.c +++ b/lib/chdir.c @@ -296,7 +296,7 @@ main (int argc, char *argv[]) if (feof (stdin)) exit (0); - error (EXIT_FAILURE, saved_errno, "reading standard input"); + error (EXIT_FAILURE, saved_errno, _("reading standard input")); } else if (len == 0) exit (0); @@ -305,7 +305,7 @@ main (int argc, char *argv[]) line[len-1] = '\0'; if (rpl_chdir (line) != 0) - error (EXIT_FAILURE, errno, "chdir failed: %s", line); + error (EXIT_FAILURE, errno, _("chdir failed: %s"), line); { /* Using `pwd' here makes sense only if it is a robust implementation,