From: Mark Kettenis Date: Sat, 19 Oct 2002 13:52:58 +0000 (+0000) Subject: * elf.c (elfcore_grok_note): Fix recognition on NT_PRXFPREG notes. X-Git-Tag: jimb-dwarf-compression-021023-branchpoint~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e377ab71daa0e8865219cde37f190c918825200b;p=external%2Fbinutils.git * elf.c (elfcore_grok_note): Fix recognition on NT_PRXFPREG notes. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3df8c96..8f1d482 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2002-10-19 Mark Kettenis + + * elf.c (elfcore_grok_note): Fix recognition on NT_PRXFPREG notes. + 2002-10-17 Denis Chertykov * elf32-ip2k.c (ELF_MACHINE_ALT1): Define alternate machine code diff --git a/bfd/elf.c b/bfd/elf.c index c1e2d11..f184c9f 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -6803,8 +6803,8 @@ elfcore_grok_note (abfd, note) #endif case NT_PRXFPREG: /* Linux SSE extension */ - if (note->namesz == 5 - && ! strcmp (note->namedata, "LINUX")) + if (note->namesz == 6 + && strcmp (note->namedata, "LINUX") == 0) return elfcore_grok_prxfpreg (abfd, note); else return true;