mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
[BZ #10200]
* db-symbols.awk: Use the last field for the symbol name instead of the 8th one.
This commit is contained in:
parent
57be3fd79a
commit
8ee84bd01f
@ -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):
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user