From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23790 invoked by alias); 26 Apr 2002 21:09:43 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 23650 invoked from network); 26 Apr 2002 21:09:37 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 26 Apr 2002 21:09:37 -0000 Received: from tooth.toronto.redhat.com (unknown [172.16.14.29]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 297B7B8013 for ; Fri, 26 Apr 2002 17:09:37 -0400 (EDT) Received: (from bje@localhost) by tooth.toronto.redhat.com (8.11.6/8.11.6) id g3QL9aX22584; Fri, 26 Apr 2002 17:09:36 -0400 From: Ben Elliston MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15561.49680.439229.460967@tooth.toronto.redhat.com> Date: Fri, 26 Apr 2002 14:09:00 -0000 To: gdb-patches@sources.redhat.com Subject: [RFA] target.c patch X-SW-Source: 2002-04/txt/msg01090.txt.bz2 I noticed a comment about a "trust-readonly" option, yet it is called "trust-readonly-sections" -- fixed. Okay to commit? Ben 2002-04-26 Ben Elliston * target.c (do_xfer_memory): Correct reference to the new option "trust-readonly-sections". Index: target.c =================================================================== RCS file: /cvs/src/src/gdb/target.c,v retrieving revision 1.33 diff -u -r1.33 target.c --- target.c 1 Feb 2002 01:01:21 -0000 1.33 +++ target.c 26 Apr 2002 21:07:52 -0000 @@ -861,9 +861,9 @@ 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;