diff options
author | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2017-09-21 17:45:18 +0200 |
---|---|---|
committer | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2017-09-21 17:45:18 +0200 |
commit | 8fe09d7421db51bc13c9228547d63e6315bd6bd0 (patch) | |
tree | 879cb31368c01541fd3e06225a332e5c57fa8c62 /bfd/elf.c | |
parent | ba52cbb9d024f2e51bd50fac36a18a15ab88344c (diff) | |
download | binutils-8fe09d7421db51bc13c9228547d63e6315bd6bd0.zip binutils-8fe09d7421db51bc13c9228547d63e6315bd6bd0.tar.gz binutils-8fe09d7421db51bc13c9228547d63e6315bd6bd0.tar.bz2 |
S/390: Fix Elf note swap s390_gs_bc vs. s390_gs_cb
Fix two typos that resulted in swapping the BFD names for the core note
register sections NT_S390_GS_CB and NT_S390_GS_BC.
bfd/ChangeLog:
* elf.c (elfcore_grok_note): For the cases NT_S390_GS_CB and
NT_S390_GS_BC, correct the previously swapped invocations of
elfcore_grok_s390_gs_bc and elfcore_grok_s390_gs_cb.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9698,14 +9698,14 @@ elfcore_grok_note (bfd *abfd, Elf_Internal_Note *note) case NT_S390_GS_CB: if (note->namesz == 6 && strcmp (note->namedata, "LINUX") == 0) - return elfcore_grok_s390_gs_bc (abfd, note); + return elfcore_grok_s390_gs_cb (abfd, note); else return TRUE; case NT_S390_GS_BC: if (note->namesz == 6 && strcmp (note->namedata, "LINUX") == 0) - return elfcore_grok_s390_gs_cb (abfd, note); + return elfcore_grok_s390_gs_bc (abfd, note); else return TRUE; |