From: Jim Meyering Date: Sun, 30 Jul 2000 16:29:15 +0000 (+0000) Subject: Convert "`%s'" in format strings to "%s", and wrap each X-Git-Tag: TEXTUTILS-2_0g~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7373e3149dc8037c382a85cc48167966d9ed5813;p=thirdparty%2Fcoreutils.git Convert "`%s'" in format strings to "%s", and wrap each corresponding argument in a `quote (...)' call. --- diff --git a/src/mkfifo.c b/src/mkfifo.c index f574c3310d..886ce7bbd8 100644 --- a/src/mkfifo.c +++ b/src/mkfifo.c @@ -30,6 +30,7 @@ #include "system.h" #include "error.h" #include "modechange.h" +#include "quote.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "mkfifo" @@ -129,7 +130,7 @@ main (int argc, char **argv) { if (mkfifo (argv[optind], newmode)) { - error (0, errno, _("cannot make fifo `%s'"), argv[optind]); + error (0, errno, _("cannot make fifo %s"), quote (argv[optind])); errors = 1; } }