diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-11-20 23:47:41 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-11-20 23:47:41 +0000 |
commit | bd9805457dd529094f82dd1b59f3ea3d850c7ab4 (patch) | |
tree | 7eb77bc7b0c273d27eadd9cc78b4054028bf3ce1 /binutils | |
parent | ef58a6ac645f683f3ccaf9e166045367179153d8 (diff) | |
download | gdb-bd9805457dd529094f82dd1b59f3ea3d850c7ab4.zip gdb-bd9805457dd529094f82dd1b59f3ea3d850c7ab4.tar.gz gdb-bd9805457dd529094f82dd1b59f3ea3d850c7ab4.tar.bz2 |
2000-11-20 H.J. Lu <hjl@gnu.org>
* readelf.c (get_osabi_name): Change ELFOSABI_MONTEREY to
ELFOSABI_AIX.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index a2ab7d2..50f9222 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2000-11-20 H.J. Lu <hjl@gnu.org> + + * readelf.c (get_osabi_name): Change ELFOSABI_MONTEREY to + ELFOSABI_AIX. + 2000-11-17 Richard Henderson <rth@redhat.com> * readelf.c (display_debug_lines): Adjust last change to diff --git a/binutils/readelf.c b/binutils/readelf.c index f1873cd..7341e2f 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2087,7 +2087,7 @@ get_osabi_name (osabi) case ELFOSABI_LINUX: return _("UNIX - Linux"); case ELFOSABI_HURD: return _("GNU/Hurd"); case ELFOSABI_SOLARIS: return _("UNIX - Solaris"); - case ELFOSABI_MONTEREY: return _("UNIX - Monterey"); + case ELFOSABI_AIX: return _("UNIX - AIX"); case ELFOSABI_IRIX: return _("UNIX - IRIX"); case ELFOSABI_FREEBSD: return _("UNIX - FreeBSD"); case ELFOSABI_TRU64: return _("UNIX - TRU64"); |