summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-07-11 11:10:53 +0000
committerJim Meyering <jim@meyering.net>2003-07-11 11:10:53 +0000
commit1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa (patch)
tree4caa5857821dc4d36fe99046f52ee5079ec0566d /src/install.c
parent208b8da666a763b70b4ab3a9fe29ea81bced8d72 (diff)
downloadcoreutils-1dae2a560aaca7f2f9f214a5e0bd607cc3e175aa.tar.xz
(change_attributes): Enclose diagnostic in _(...).
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install.c b/src/install.c
index bcad6b662..c22a9dbaa 100644
--- a/src/install.c
+++ b/src/install.c
@@ -469,13 +469,13 @@ change_attributes (const char *path)
#endif
)
{
- error (0, errno, "cannot change ownership of %s", quote (path));
+ error (0, errno, _("cannot change ownership of %s"), quote (path));
err = 1;
}
if (!err && chmod (path, mode))
{
- error (0, errno, "cannot change permissions of %s", quote (path));
+ error (0, errno, _("cannot change permissions of %s"), quote (path));
err = 1;
}