summaryrefslogtreecommitdiff
path: root/gdb/debuginfod-support.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-10-31 11:34:06 -0600
committerTom Tromey <tom@tromey.com>2021-10-31 11:34:06 -0600
commit2a8f1f474469bd1a35435deaf5fb0a2ce038071d (patch)
tree663cb3f75a11a0f43f0ad3d19bd8f18da30c722f /gdb/debuginfod-support.c
parentc26c6bc0a53a179084b77899e2cd70d88aa5a224 (diff)
downloadbinutils-gdb-2a8f1f474469bd1a35435deaf5fb0a2ce038071d.tar.gz
Fix unittest.exp failure due to 'set debuginfod' addition
The 'set debuginfod' change caused a regression in unittest.exp: Running selftest help_doc_invariants. help doc broken invariant: command 'info set debuginfod' help doc first line is not terminated with a '.' character help doc broken invariant: command 'set debuginfod' help doc first line is not terminated with a '.' character help doc broken invariant: command 'show debuginfod' help doc first line is not terminated with a '.' character Self test failed: self-test failed at ../../binutils-gdb/gdb/unittests/command-def-selftests.c:100 This patch fixes the problem. I'm checking it in.
Diffstat (limited to 'gdb/debuginfod-support.c')
-rw-r--r--gdb/debuginfod-support.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/debuginfod-support.c b/gdb/debuginfod-support.c
index 097977cd45c..a1269772b2e 100644
--- a/gdb/debuginfod-support.c
+++ b/gdb/debuginfod-support.c
@@ -406,8 +406,8 @@ _initialize_debuginfod ()
{
/* set/show debuginfod */
add_setshow_prefix_cmd ("debuginfod", class_run,
- _("Set debuginfod options"),
- _("Show debuginfod options"),
+ _("Set debuginfod options."),
+ _("Show debuginfod options."),
&set_debuginfod_prefix_list,
&show_debuginfod_prefix_list,
&setlist, &showlist);