From 5aaace278daa85ea6c3255a47e4dd47f7f25df26 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 4 Jan 2000 23:30:51 +0000 Subject: Apply patch from Mumit Khan to fix bugs generating dll names. --- ld/pe-dll.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'ld/pe-dll.c') diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 657f41d..afb7edd 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -1455,14 +1455,7 @@ pe_dll_generate_implib (def, impfilename) bfd *outarch; bfd *head = 0; - dll_filename = def->name; - if (dll_filename == 0) - { - dll_filename = dll_name; - for (i=0; impfilename[i]; i++) - if (impfilename[i] == '/' || impfilename[i] == '\\') - dll_filename = impfilename+1; - } + dll_filename = (def->name) ? def->name : dll_name; dll_symname = xstrdup (dll_filename); for (i=0; dll_symname[i]; i++) if (!isalnum ((unsigned char) dll_symname[i])) -- cgit v1.1