summaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2000-07-20 02:19:23 +0000
committerH.J. Lu <hjl@lucon.org>2000-07-20 02:19:23 +0000
commit01fe344579bf8b38995a016c04036efdd6fbb6b3 (patch)
tree5a265a82d91c134ea32f00bd45537683d7596fb2 /bfd/elf.c
parent312b020125da85eb50b7d7dde2cf5f23200de6a1 (diff)
downloadgdb-01fe344579bf8b38995a016c04036efdd6fbb6b3.tar.gz
2000-07-19 H.J. Lu <hjl@gnu.org>
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_CONFIG, DT_DEPAUDIT and DT_AUDIT as strings.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index d146ab9a8f7..523dd34b5eb 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;