summaryrefslogtreecommitdiff
path: root/src/copy.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-12-18 14:22:50 +0000
committerJim Meyering <jim@meyering.net>1998-12-18 14:22:50 +0000
commite68c81a48feb183d16b23652fb52e254c5ab4b15 (patch)
tree25df0e2ce2b50be42214a64c53bed19ddf9a3ca7 /src/copy.c
parent0e49de1acba8f8dec35d54061cc965dc4909a689 (diff)
downloadcoreutils-e68c81a48feb183d16b23652fb52e254c5ab4b15.tar.xz
(copy_internal): Remove errnoeous `%s: ' prefix
from format string. From Michiel Bacchiani.
Diffstat (limited to 'src/copy.c')
-rw-r--r--src/copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/copy.c b/src/copy.c
index 401ea79ed..4b50d10f7 100644
--- a/src/copy.c
+++ b/src/copy.c
@@ -595,7 +595,7 @@ copy_internal (const char *src_path, const char *dst_path,
directories). */
if (S_ISDIR (src_type))
{
- error (0, 0, _("%s: won't create hard link `%s' to directory `%s'"),
+ error (0, 0, _("won't create hard link `%s' to directory `%s'"),
dst_path, earlier_file);
goto un_backup;
}