diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2007-08-09 14:22:03 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2007-08-09 14:22:03 +0000 |
commit | c309eac2074a11c52d122e543d197103c6020f6c (patch) | |
tree | 906a8a45ef07dceb0cc044e8144b7103bb2701c7 /bfd | |
parent | c3ad16c0cde34747ea3f1d3fb9c17dd85d9ca475 (diff) | |
download | fsf-binutils-gdb-c309eac2074a11c52d122e543d197103c6020f6c.zip fsf-binutils-gdb-c309eac2074a11c52d122e543d197103c6020f6c.tar.gz fsf-binutils-gdb-c309eac2074a11c52d122e543d197103c6020f6c.tar.bz2 |
* opncls.c (bfd_openr_iovec): Fix the OPEN parameter macro expansion.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/opncls.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 03bdac1..eb5b3e0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2007-08-09 Jan Kratochvil <jan.kratochvil@redhat.com> + + * opncls.c (bfd_openr_iovec): Fix the OPEN parameter macro expansion. + 2007-08-07 Nick Clifton <nickc@redhat.com> * po/bfd.pot: Updated template. diff --git a/bfd/opncls.c b/bfd/opncls.c index 02066d8..3d02c32 100644 --- a/bfd/opncls.c +++ b/bfd/opncls.c @@ -545,7 +545,8 @@ bfd_openr_iovec (const char *filename, const char *target, nbfd->filename = filename; nbfd->direction = read_direction; - stream = open (nbfd, open_closure); + /* `open (...)' would get expanded by an the open(2) syscall macro. */ + stream = (*open) (nbfd, open_closure); if (stream == NULL) { _bfd_delete_bfd (nbfd); |