diff options
author | Jim Meyering <jim@meyering.net> | 2002-03-10 22:23:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-03-10 22:23:19 +0000 |
commit | cd0be06ed2fa9376be79d286ef149bf8ba2a3af8 (patch) | |
tree | c1c3100360e781591204a32fed66af9dd5742df2 | |
parent | 48f998c0e82633f711a57a93f6f130eb239c8413 (diff) | |
download | coreutils-cd0be06ed2fa9376be79d286ef149bf8ba2a3af8.tar.gz |
(strip): Change wording in diagnostic.
-rw-r--r-- | src/install.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c index 8efb2acb2..9c8dd3608 100644 --- a/src/install.c +++ b/src/install.c @@ -1,5 +1,5 @@ /* install - copy files and set attributes - Copyright (C) 89, 90, 91, 1995-2001 Free Software Foundation, Inc. + Copyright (C) 89, 90, 91, 1995-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -529,7 +529,7 @@ strip (const char *path) switch (pid) { case -1: - error (1, errno, _("cannot fork")); + error (1, errno, _("fork system call failed")); break; case 0: /* Child. */ execlp ("strip", "strip", path, NULL); |