]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tweak diagnostic wording: Use `... return to working directory', rather
authorJim Meyering <jim@meyering.net>
Tue, 14 Jun 2005 08:18:43 +0000 (08:18 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 14 Jun 2005 08:18:43 +0000 (08:18 +0000)
than `... restore working directory'.

src/install.c
src/mkdir.c

index 049d7ab4b0067528cb50ab8c79a7d0b5571c9b10..0dc5f1dd2d68576e885e9d3b914f61e5c4af43c8 100644 (file)
@@ -365,7 +365,7 @@ main (int argc, char **argv)
            {
              error (0, 0,
                     _("unable to create relative-named directory, %s,"
-                      " due to prior failure to restore working directory"),
+                      " due to prior failure to return to working directory"),
                     quote (argv[optind]));
              ok = false;;
              continue;
index 3ba3d7a6a21a4bf1de5ffc0baaf58cc126bed164..5fce2ce4d33c78f5d7b6aa7bf253b13524a8cdbc 100644 (file)
@@ -155,7 +155,7 @@ main (int argc, char **argv)
       if (cwd_not_restored && IS_RELATIVE_FILE_NAME (argv[optind]))
        {
          error (0, 0, _("unable to create relative-named directory, %s,"
-                        " due to prior failure to restore working directory"),
+                        " due to prior failure to return to working directory"),
                 quote (argv[optind]));
          exit_status = EXIT_FAILURE;
          continue;