projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c21641d
)
* pe-dll.c (auto_export): Filter on just the import prefix, "_imp_", not
author
Nick Clifton
<nickc@redhat.com>
Tue, 13 Jul 2004 08:55:53 +0000
(08:55 +0000)
committer
Nick Clifton
<nickc@redhat.com>
Tue, 13 Jul 2004 08:55:53 +0000
(08:55 +0000)
"_imp__".
ld/ChangeLog
patch
|
blob
|
history
ld/pe-dll.c
patch
|
blob
|
history
diff --git
a/ld/ChangeLog
b/ld/ChangeLog
index 93695e03826b789450b13a8eb3c23cd2920fc37f..92275b574c60d3155f980ecb9365b0637de66ca7 100644
(file)
--- a/
ld/ChangeLog
+++ b/
ld/ChangeLog
@@
-1,3
+1,8
@@
+2004-07-13 Danny Smith <dannysmith@usesr.sourceforge.net>
+
+ * pe-dll.c (auto_export): Filter on just the import prefix,
+ "_imp_", not "_imp__".
+
2004-07-09 Nick Clifton <nickc@redhat.com>
* configure.tgt: Change sh-sybmian-elf to sh-*-symbianelf.
diff --git
a/ld/pe-dll.c
b/ld/pe-dll.c
index 43be40bb71eaae6bbf04ac784f558111768a2924..0d0ecda87db72da523a49660ab4401a40a123f4d 100644
(file)
--- a/
ld/pe-dll.c
+++ b/
ld/pe-dll.c
@@
-398,7
+398,7
@@
auto_export (bfd *abfd, def_file *d, const char *n)
libname = lbasename (abfd->my_archive->filename);
/* We should not re-export imported stuff. */
- if (strncmp (n, "_imp_
_", 6
) == 0)
+ if (strncmp (n, "_imp_
", 5
) == 0)
return 0;
for (i = 0; i < d->num_exports; i++)