aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-09-11 13:50:09 +0200
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-09-11 13:50:09 +0200
commit7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8 (patch)
tree29788f4bc2fbece7e866ecc2437567bd598e7d4c
parenta56f73917a8f96892c6e7d9ae60fb5a0d0495da2 (diff)
downloadbinutils-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.zip
binutils-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.gz
binutils-7a4e8e7d551eaddc63c67d85c02c7573f5a56ae8.tar.bz2
gdb/breakpoint: fix typo in help message of "set breakpoint condition-evaluation"
The options for the "breakpoint condition-evaluation" setting are "host", "target", and "auto". The help message mentions the option "gdb" at one point instead of "host". Fix this typo. Also add a period. gdb/ChangeLog: 2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> * breakpoint.c: Fix typo in the help message of the "set breakpoint condition-evaluation" command.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/breakpoint.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b0a6c8f..6444bc2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2020-09-11 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
+ * breakpoint.c: Fix typo in the help message of the
+ "set breakpoint condition-evaluation" command.
+
2020-09-10 Kamil Rytarowski <n54@gmx.com>
* nbsd-nat.c: Include "nat/netbsd-nat.h".
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 670cba0..fff80ff 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -15914,7 +15914,7 @@ breakpoint conditions will be downloaded to the target (if the target\n\
supports such feature) and conditions will be evaluated on the target's side.\n\
If this is set to \"auto\" (default), this will be automatically set to\n\
\"target\" if it supports condition evaluation, otherwise it will\n\
-be set to \"gdb\""),
+be set to \"host\"."),
&set_condition_evaluation_mode,
&show_condition_evaluation_mode,
&breakpoint_set_cmdlist,