]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
[BZ #10200]
authorAurelien Jarno <aurelien@aurel32.net>
Wed, 27 May 2009 23:41:00 +0000 (16:41 -0700)
committerRoland McGrath <roland@redhat.com>
Wed, 27 May 2009 23:41:00 +0000 (16:41 -0700)
* db-symbols.awk: Use the last field for the symbol name instead
of the 8th one.

nptl_db/ChangeLog
nptl_db/db-symbols.awk

index 8c07d9f32f2ebaa148ec15dd4807e163b30d6a3d..1ade1968a7d699066d4998fcefc1fa8d7129ac54 100644 (file)
@@ -1,3 +1,9 @@
+2009-05-25  Aurelien Jarno  <aurelien@aurel32.net>
+
+       [BZ #10200]
+       * db-symbols.awk: Use the last field for the symbol name instead
+       of the 8th one.
+
 2009-03-19  Roland McGrath  <roland@redhat.com>
 
        * td_symbol_list.c (DB_LOOKUP_NAME, DB_LOOKUP_NAME_TH_UNIQUE):
index 33272138f7c53b3b9004d5fbb46d33f72f94fff3..f9a91b93bfd66dff8d3ecffc0b6997b471279a88 100644 (file)
@@ -14,7 +14,7 @@ NF == 0 { in_symtab=0; next }
 
 !in_symtab { next }
 
-NF >= 8 && $7 != "UND" { seen[$8] = 1 }
+NF >= 8 && $7 != "UND" { seen[$NF] = 1 }
 
 END {
   status = 0;