mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
Update.
2000-05-10 Jakub Jelinek <jakub@redhat.com> * elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message at proper place.
This commit is contained in:
parent
9c95d361a2
commit
676d12fd82
@ -1,3 +1,8 @@
|
||||
2000-05-10 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message
|
||||
at proper place.
|
||||
|
||||
2000-05-09 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* elf/ldconfig.c: Include elf.h.
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user