summaryrefslogtreecommitdiff
path: root/nptl_db/db-symbols.awk
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2009-05-27 16:41:00 -0700
committerRoland McGrath <roland@redhat.com>2009-05-27 16:41:00 -0700
commit8ee84bd01f85b5ab1430750270b7e51a967d03eb (patch)
treeb418165e062982f083243b2f2f051e64a75c4af9 /nptl_db/db-symbols.awk
parent57be3fd79a418b14e417e9a6b96f05dcb99932ee (diff)
[BZ #10200]
* db-symbols.awk: Use the last field for the symbol name instead of the 8th one.
Diffstat (limited to 'nptl_db/db-symbols.awk')
-rw-r--r--nptl_db/db-symbols.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl_db/db-symbols.awk b/nptl_db/db-symbols.awk
index 33272138f7..f9a91b93bf 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;