diff options
author | Ben Elliston <bje@au.ibm.com> | 2002-04-26 22:11:52 +0000 |
---|---|---|
committer | Ben Elliston <bje@au.ibm.com> | 2002-04-26 22:11:52 +0000 |
commit | 2ceb85d0bde7d6269f092819d1bfc96ba48a8ee1 (patch) | |
tree | 2296d7cd132408df55152816d559f00c94c9df38 /gdb/target.c | |
parent | f5f8a0099eaa5d5a75a801d5c4357024b1550d2f (diff) | |
download | gdb-2ceb85d0bde7d6269f092819d1bfc96ba48a8ee1.zip gdb-2ceb85d0bde7d6269f092819d1bfc96ba48a8ee1.tar.gz gdb-2ceb85d0bde7d6269f092819d1bfc96ba48a8ee1.tar.bz2 |
2002-04-26 Ben Elliston <bje@redhat.com>
* target.c (do_xfer_memory): Correct reference to the new option
"trust-readonly-sections".
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/target.c b/gdb/target.c index d5f205f..ddc012c 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -861,9 +861,9 @@ do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, if (!write && trust_readonly) { - /* User-settable option, "trust-readonly". If true, then - memory from any SEC_READONLY bfd section may be read - directly from the bfd file. */ + /* User-settable option, "trust-readonly-sections". If true, + then memory from any SEC_READONLY bfd section may be read + directly from the bfd file. */ struct section_table *secp; |