diff options
author | Jim Meyering <jim@meyering.net> | 2001-10-11 15:52:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-10-11 15:52:17 +0000 |
commit | b729ec75ca52e194f1225bbc0752b259be2044c1 (patch) | |
tree | 2f292098c1200664b2b045f3b67db5566a4e01aa /lib | |
parent | 4d390a18ba62f06affbba6665b77cbc7c4917136 (diff) | |
download | coreutils-b729ec75ca52e194f1225bbc0752b259be2044c1.tar.xz |
(argmatch_invalid): Use quotearg_n_style (0, ...
and quote_n (1, ... to avoid clobbering a buffer.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/argmatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/argmatch.c b/lib/argmatch.c index af96c8cbe..c86ba71b4 100644 --- a/lib/argmatch.c +++ b/lib/argmatch.c @@ -160,8 +160,8 @@ argmatch_invalid (const char *context, const char *value, int problem) ? _("invalid argument %s for %s") : _("ambiguous argument %s for %s")); - error (0, 0, format, quotearg_style (ARGMATCH_QUOTING_STYLE, value), - quote (context)); + error (0, 0, format, quotearg_n_style (0, ARGMATCH_QUOTING_STYLE, value), + quote_n (1, context)); } /* List the valid arguments for argmatch. |