From: Andreas Jaeger Date: Wed, 10 May 2000 10:16:57 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc_2-1-91~430 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=676d12fd82a9600aeef4aeca9492f9198870ef06;p=thirdparty%2Fglibc.git Update. 2000-05-10 Jakub Jelinek * elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message at proper place. --- diff --git a/ChangeLog b/ChangeLog index fcc434691d8..9e8aabbacc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-05-10 Jakub Jelinek + + * elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message + at proper place. + 2000-05-09 Jakub Jelinek * elf/ldconfig.c: Include elf.h. diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index d1537ec3dcb..8b67b4696d8 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -158,15 +158,15 @@ _dl_reloc_bad_type (struct link_map *map, uint_fast8_t type, int plt) if (plt) { char msg[] = "unexpected reloc type 0x??"; - msg[sizeof msg - 2] = DIGIT(type >> 8); - msg[sizeof msg - 1] = DIGIT(type); + msg[sizeof msg - 3] = DIGIT(type >> 8); + msg[sizeof msg - 2] = DIGIT(type); _dl_signal_error (0, map->l_name, msg); } else { char msg[] = "unexpected PLT reloc type 0x??"; - msg[sizeof msg - 2] = DIGIT(type >> 8); - msg[sizeof msg - 1] = DIGIT(type); + msg[sizeof msg - 3] = DIGIT(type >> 8); + msg[sizeof msg - 2] = DIGIT(type); _dl_signal_error (0, map->l_name, msg); } }