From: Jim Meyering Date: Fri, 18 Dec 1998 14:22:50 +0000 (+0000) Subject: (copy_internal): Remove errnoeous `%s: ' prefix X-Git-Tag: FILEUTILS-4_1-b1~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e68c81a48feb183d16b23652fb52e254c5ab4b15;p=thirdparty%2Fcoreutils.git (copy_internal): Remove errnoeous `%s: ' prefix from format string. From Michiel Bacchiani. --- diff --git a/src/copy.c b/src/copy.c index 401ea79ed8..4b50d10f7b 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; }