diff options
author | Andreas Schwab <aschwab@redhat.com> | 2009-06-16 20:34:55 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-06-16 20:34:55 -0700 |
commit | f60ddf9bf737e015f7da866ca7f46006b4ce9700 (patch) | |
tree | 8b2e94779e55e947e1de64d17f64b108d78eb7c3 /sunrpc | |
parent | 8a909c6430e8b6ad76304f749d36fdd6e40e8046 (diff) | |
download | glibc-f60ddf9bf737e015f7da866ca7f46006b4ce9700.zip glibc-f60ddf9bf737e015f7da866ca7f46006b4ce9700.tar.gz glibc-f60ddf9bf737e015f7da866ca7f46006b4ce9700.tar.bz2 |
Don't treat bug reporting message as a format string.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/rpcinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/rpcinfo.c b/sunrpc/rpcinfo.c index 5e00be9..6020cd5 100644 --- a/sunrpc/rpcinfo.c +++ b/sunrpc/rpcinfo.c @@ -688,9 +688,9 @@ usage (FILE *stream) fputs (_(" rpcinfo -b prognum versnum\n"), stream); fputs (_(" rpcinfo -d prognum versnum\n"), stream); fputc ('\n', stream); - fprintf (stream, _("\ + fputs (_("\ For bug reporting instructions, please see:\n\ -<http://www.gnu.org/software/libc/bugs.html>.\n")); +<http://www.gnu.org/software/libc/bugs.html>.\n"), stream); } static void |