aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/readelf.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index f2fbd37..f3262f9 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-14 Alan Modra <amodra@bigpond.net.au>
+
+ * readelf.c (get_ppc_dynamic_type): Display DT_PPC_GOT, not
+ DT_PPC_GLINK.
+
2005-05-13 Fred Fish <fnf@specifixinc.com>
* readelf.c: Fix a couple of obvious comment typos,
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 3b086cb..0891847 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -1417,7 +1417,7 @@ get_ppc_dynamic_type (unsigned long type)
{
switch (type)
{
- case DT_PPC_GLINK: return "PPC_GLINK";
+ case DT_PPC_GOT: return "PPC_GOT";
default:
return NULL;
}