diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-14 08:18:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-14 08:18:43 +0000 |
commit | 19c47583a27b8ff4d0d58c0fd0b82a515404630b (patch) | |
tree | 9745c4df095661f5cb83297c594359365bf3d256 /src | |
parent | bf684a6106dd2e8a6761364d5d35d5a9346082c9 (diff) | |
download | coreutils-19c47583a27b8ff4d0d58c0fd0b82a515404630b.tar.xz |
tweak diagnostic wording: Use `... return to working directory', rather
than `... restore working directory'.
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 2 | ||||
-rw-r--r-- | src/mkdir.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index 049d7ab4b..0dc5f1dd2 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 3ba3d7a6a..5fce2ce4d 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; |