]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Wed, 10 May 2000 10:20:09 +0000 (10:20 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 10 May 2000 10:20:09 +0000 (10:20 +0000)
at proper place.  Compute the high nibble correctly.

ChangeLog
elf/dl-reloc.c

index 9e8aabbacc5b1e29367e060a5705c72b4ff8252d..eaabc81ea66beb2381653e2d97b69717ce4ae014 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
 2000-05-10  Jakub Jelinek  <jakub@redhat.com>
 
        * elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message
-       at proper place.
+       at proper place.  Compute the high nibble correctly.
 
 2000-05-09  Jakub Jelinek  <jakub@redhat.com>
 
index 8b67b4696d8822a48e9496f7bfd479a6e3efad1d..3ee6f084837c4e2b6b0347dd6ea4a66ee2f38753 100644 (file)
@@ -158,14 +158,14 @@ _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 - 3] = DIGIT(type >> 8);
+      msg[sizeof msg - 3] = DIGIT(type >> 4);
       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 - 3] = DIGIT(type >> 8);
+      msg[sizeof msg - 3] = DIGIT(type >> 4);
       msg[sizeof msg - 2] = DIGIT(type);
       _dl_signal_error (0, map->l_name, msg);
     }