* db-symbols.awk: Use the last field for the symbol name instead
of the 8th one.
This commit is contained in:
Aurelien Jarno 2009-05-27 16:41:00 -07:00 committed by Roland McGrath
parent 57be3fd79a
commit 8ee84bd01f
2 changed files with 7 additions and 1 deletions

View 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):

View 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;