* opncls.c (bfd_openr_iovec): Fix the OPEN parameter macro expansion.
authorJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 9 Aug 2007 14:22:03 +0000 (14:22 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 9 Aug 2007 14:22:03 +0000 (14:22 +0000)
bfd/ChangeLog
bfd/opncls.c

index 03bdac1..eb5b3e0 100644 (file)
@@ -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.
index 02066d8..3d02c32 100644 (file)
@@ -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);