From 8a098729c0f4f39b2acb9a45de1a56fe383a2a86 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 24 Oct 2000 06:18:37 +0000 Subject: [PATCH] (extract_mangle): Fix diagnostic with wrong number of %s'es. --- src/mangle.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/mangle.c b/src/mangle.c index ca8de64..204bf7c 100644 --- a/src/mangle.c +++ b/src/mangle.c @@ -28,12 +28,9 @@ struct mangled char normal[1]; }; -/*---------------------------------------------------------------------. -| Extract a GNUTYPE_NAMES record contents. It seems that such are not | -| produced anymore by GNU tar, but we leave the reading code around | -| nevertheless, for salvaging old tapes. | -`---------------------------------------------------------------------*/ - +/* Extract a GNUTYPE_NAMES record contents. It seems that such are + not produced anymore by GNU tar, but we leave the reading code + around nevertheless, for salvaging old tapes. */ void extract_mangle (void) { @@ -110,7 +107,7 @@ extract_mangle (void) unquote_string (name_end + 4); if (symlink (name, name_end + 4) && (unlink (name_end + 4) || symlink (name, name_end + 4))) - ERROR ((0, errno, _("%s: Cannot symlink %s %s"), + ERROR ((0, errno, _("%s: Cannot symlink to %s"), quotearg_colon (name), quote_n (1, name_end + 4))); else if (verbose_option) WARN ((0, 0, _("Symlinked %s to %s"), name, name_end + 4)); -- 2.45.2