From: Jim Meyering Date: Tue, 3 May 2011 08:23:12 +0000 (+0200) Subject: copy: fix my typo X-Git-Tag: v8.13~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47ef7504dab60f04b79e1c50f533ecd689d28598;p=thirdparty%2Fcoreutils.git copy: fix my typo * src/copy.c (copy_reg): Fix my typo (mis-applied patch). The patch by Jeff Liu was fine, but I mis-applied it and introduced a compilation error in commit efa479c1. 2011-05-03 Jim Meyering --- diff --git a/src/copy.c b/src/copy.c index 186086ebdd..801a474332 100644 --- a/src/copy.c +++ b/src/copy.c @@ -975,7 +975,7 @@ copy_reg (char const *src_name, char const *dst_name, if (!clone_ok) { error (0, errno, _("failed to clone %s from %s"), - quote_n (0, dst_name), quote_1 (1, src_name)); + quote_n (0, dst_name), quote_n (1, src_name)); return_val = false; goto close_src_and_dst_desc; }