]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main): Appease the gods.
authorJim Meyering <jim@meyering.net>
Sun, 28 Nov 2004 21:29:16 +0000 (21:29 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 28 Nov 2004 21:29:16 +0000 (21:29 +0000)
lib/chdir.c

index 1e73e1e1efa92683541833e61e9d85766f3588f0..56cbb24ce9540c81325070ad324fca63ecd52d5e 100644 (file)
@@ -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,