diff options
-rw-r--r-- | src/shred.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shred.c b/src/shred.c index aa2da631e..51ae50755 100644 --- a/src/shred.c +++ b/src/shred.c @@ -95,6 +95,7 @@ # include "error.h" # include "human.h" # include "quotearg.h" /* For quotearg_colon */ +# include "quote.h" /* For quotearg_colon */ # include "xalloc.h" char *xstrdup PARAMS ((char const *)); @@ -1608,7 +1609,8 @@ wipename (char *oldname, char const *qoldname, struct Options const *flags) * about renaming oldname. newname doesn't need * quoting because we picked it. */ - error (0, 0, _("%s: renamed to `%s'"), qoldname, newname); + error (0, 0, _("%s: renamed to %s"), qoldname, + quote (newname)); } memcpy (oldname + (base - newname), base, len + 1); break; |