diff options
author | Mark Mitchell <mark@codesourcery.com> | 2005-06-13 18:39:11 +0000 |
---|---|---|
committer | Mark Mitchell <mark@codesourcery.com> | 2005-06-13 18:39:11 +0000 |
commit | 9f76c2cd1768b3125949139c0c9a745a5ec5205b (patch) | |
tree | 0df002fa931d1e182d2f83f979d8b1a794a6049e /gdb/corelow.c | |
parent | 26585198a17552fde8fa6387586978be9e7a7201 (diff) | |
download | binutils-gdb-9f76c2cd1768b3125949139c0c9a745a5ec5205b.tar.gz |
* corelow.c (core_open): Use bfd_fopen, not bfd_fdopenr.
* exec.c (exec_file_attach): Likewise.
* solib-frv.c (enable_break2): Likewise.
* solib-svr4.c (enable_break): Likewise.
* solib.c (solib_map_sections): Likewise.
* symfile.c (symfile_bfd_open): Likewise.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 3e70ed4bfae..c07b5749716 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -316,7 +316,9 @@ core_open (char *filename, int from_tty) if (scratch_chan < 0) perror_with_name (filename); - temp_bfd = bfd_fdopenr (filename, gnutarget, scratch_chan); + temp_bfd = bfd_fopen (filename, gnutarget, + write_files ? FOPEN_RUB : FOPEN_RB, + scratch_chan); if (temp_bfd == NULL) perror_with_name (filename); |