From ef39d85e8a8c768ab8f4ff21e3a1205c34ce7ef2 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 20 Jul 2000 02:19:23 +0000 Subject: [PATCH] 2000-07-19 H.J. Lu * elf.c (_bfd_elf_print_private_bfd_data): Handle DT_CONFIG, DT_DEPAUDIT and DT_AUDIT as strings. --- bfd/ChangeLog | 5 +++++ bfd/elf.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 612249fa5..9836baf77 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2000-07-19 H.J. Lu + + * elf.c (_bfd_elf_print_private_bfd_data): Handle DT_CONFIG, + DT_DEPAUDIT and DT_AUDIT as strings. + 2000-07-19 Nick Clifton * format.c: Fix formatting. diff --git a/bfd/elf.c b/bfd/elf.c index d146ab9a8..523dd34b5 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -674,9 +674,9 @@ _bfd_elf_print_private_bfd_data (abfd, farg) case DT_POSFLAG_1: name = "POSFLAG_1"; break; case DT_SYMINSZ: name = "SYMINSZ"; break; case DT_SYMINENT: name = "SYMINENT"; break; - case DT_CONFIG: name = "CONFIG"; break; - case DT_DEPAUDIT: name = "DEPAUDIT"; break; - case DT_AUDIT: name = "AUDIT"; break; + case DT_CONFIG: name = "CONFIG"; stringp = true; break; + case DT_DEPAUDIT: name = "DEPAUDIT"; stringp = true; break; + case DT_AUDIT: name = "AUDIT"; stringp = true; break; case DT_PLTPAD: name = "PLTPAD"; break; case DT_MOVETAB: name = "MOVETAB"; break; case DT_SYMINFO: name = "SYMINFO"; break; -- 2.11.4.GIT