From: John Gilmore Date: Sat, 27 Feb 1993 02:35:04 +0000 (+0000) Subject: * xcoffexec.c (vmap_ldinfo): Fix "/" for '/' typo, reported X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9116f7c7ff255cc9a7075c876c4e4927e0d97fbf;p=deliverable%2Fbinutils-gdb.git * xcoffexec.c (vmap_ldinfo): Fix "/" for '/' typo, reported by Josef Leherbauer, joe@takeFive.co.at. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7977a6dce2..758bbf442f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +Fri Feb 26 18:33:18 1993 John Gilmore (gnu@cacophony.cygnus.com) + + * xcoffexec.c (vmap_ldinfo): Fix "/" for '/' typo, reported + by Josef Leherbauer, joe@takeFive.co.at. + +Wed Feb 24 19:17:11 1993 John Gilmore (gnu@cacophony.cygnus.com) + + * symfile.c (syms_from_objfile), tm-29k.h, tm-3b1.h, tm-68k-un.h, + tm-altos.h, tm-arm.h, tm-convex.h, tm-es1800.h, tm-h8300.h, + tm-hp300bsd.h, tm-hp300hpux.h, tm-hppa.h, tm-i386bsd.h, + tm-i386v.h, tm-i960.h, tm-irix3.h, tm-isi.h, tm-linux.h, + tm-m88k.h, tm-merlin.h, tm-mips.h, tm-news.h, tm-np1.h, tm-pn.h, + tm-pyr.h, tm-rs6000.h, tm-spc-un.h, tm-sun386.h, tm-sunos.h, + tm-symmetry.h, tm-sysv4.h, tm-tahoe.h, tm-umax.h, tm-vax.h, + tm-vx68.h, tm-z8k.h: Remove remnants of NAMES_HAVE_UNDERSCORE. + Wed Feb 24 07:41:15 1993 Fred Fish (fnf@cygnus.com) * symtab.h (SYMBOL_INIT_DEMANGLED_NAME): Initialize contents diff --git a/gdb/xcoffexec.c b/gdb/xcoffexec.c index 16232ac73e..ff13aea6cd 100644 --- a/gdb/xcoffexec.c +++ b/gdb/xcoffexec.c @@ -706,7 +706,7 @@ retry: /* The filenames are not always sufficient to match on. */ - if ((name[0] == "/" && !STREQ(name, vp->name)) + if ((name[0] == '/' && !STREQ(name, vp->name)) || (memb[0] && !STREQ(memb, vp->member))) continue;