From: Aurelien Jarno Date: Wed, 27 May 2009 23:41:00 +0000 (-0700) Subject: [BZ #10200] X-Git-Tag: fedora/glibc-2.10.90-1~8^2~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ee84bd01f85b5ab1430750270b7e51a967d03eb;p=thirdparty%2Fglibc.git [BZ #10200] * db-symbols.awk: Use the last field for the symbol name instead of the 8th one. --- diff --git a/nptl_db/ChangeLog b/nptl_db/ChangeLog index 8c07d9f32f2..1ade1968a7d 100644 --- a/nptl_db/ChangeLog +++ b/nptl_db/ChangeLog @@ -1,3 +1,9 @@ +2009-05-25 Aurelien Jarno + + [BZ #10200] + * db-symbols.awk: Use the last field for the symbol name instead + of the 8th one. + 2009-03-19 Roland McGrath * td_symbol_list.c (DB_LOOKUP_NAME, DB_LOOKUP_NAME_TH_UNIQUE): diff --git a/nptl_db/db-symbols.awk b/nptl_db/db-symbols.awk index 33272138f7c..f9a91b93bfd 100644 --- a/nptl_db/db-symbols.awk +++ b/nptl_db/db-symbols.awk @@ -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;