aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/elfdump
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2014-08-21 20:55:10 +0000
committerEd Maste <emaste@FreeBSD.org>2014-08-21 20:55:10 +0000
commit4d52a0fd97a6cbb1b2551a81ef9d22e64e373037 (patch)
treeb54591959fc0a019a3017cbc0ed564e01d9b075a /usr.bin/elfdump
parent86c6e36f50023748e8b578cc9054949090420528 (diff)
downloadsrc-4d52a0fd97a6cbb1b2551a81ef9d22e64e373037.tar.gz
src-4d52a0fd97a6cbb1b2551a81ef9d22e64e373037.zip
Rename DT_FEATURE_1 to DT_FEATURE
This provides a minor cleanup in elfdump; there are otherwise no consumers in the tree. Old SUN documentation can be found for either variant, but GNU binutils switched to DT_FEATURE around 2000. Sponsored by: The FreeBSD Foundation
Notes
Notes: svn path=/head/; revision=270303
Diffstat (limited to 'usr.bin/elfdump')
-rw-r--r--usr.bin/elfdump/elfdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c
index 49c2aae86ca9..86b70bd32639 100644
--- a/usr.bin/elfdump/elfdump.c
+++ b/usr.bin/elfdump/elfdump.c
@@ -213,7 +213,7 @@ d_tags(u_int64_t tag)
case DT_PLTPADSZ: return "DT_PLTPADSZ";
case DT_MOVEENT: return "DT_MOVEENT";
case DT_MOVESZ: return "DT_MOVESZ";
- case 0x6ffffdfc: return "DT_FEATURE";
+ case DT_FEATURE: return "DT_FEATURE";
case DT_POSFLAG_1: return "DT_POSFLAG_1";
case DT_SYMINSZ: return "DT_SYMINSZ";
case DT_SYMINENT : return "DT_SYMINENT (DT_VALRNGHI)";