elfdump: chase ABI tag note name change from r232832
r232832 changed the ABI tag note name from .note.ABI-tag to .note.tag. Follow suit in elfdump. Elfdump's note parsing is very basic and should be significantly reworked, but for now just restore the broken functionality. PR: 228290 Submitted by: martin at lispworks.com MFC after: 1 week
This commit is contained in:
parent
16b88f72f7
commit
f37e7f527b
@ -659,7 +659,7 @@ main(int ac, char **av)
|
||||
case SHT_NOTE:
|
||||
name = elf_get_word(e, v, SH_NAME);
|
||||
if (flags & ED_NOTE &&
|
||||
strcmp(shstrtab + name, ".note.ABI-tag") == 0)
|
||||
strcmp(shstrtab + name, ".note.tag") == 0)
|
||||
elf_print_note(e, v);
|
||||
break;
|
||||
case SHT_DYNSYM:
|
||||
|
Loading…
Reference in New Issue
Block a user