From: Jim Meyering Date: Tue, 14 Jun 2005 08:18:43 +0000 (+0000) Subject: tweak diagnostic wording: Use `... return to working directory', rather X-Git-Tag: CPPI-1_12~623 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19c47583a27b8ff4d0d58c0fd0b82a515404630b;p=platform%2Fupstream%2Fcoreutils.git tweak diagnostic wording: Use `... return to working directory', rather than `... restore working directory'. --- diff --git a/src/install.c b/src/install.c index 049d7ab..0dc5f1d 100644 --- a/src/install.c +++ b/src/install.c @@ -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; diff --git a/src/mkdir.c b/src/mkdir.c index 3ba3d7a..5fce2ce 100644 --- a/src/mkdir.c +++ b/src/mkdir.c @@ -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;