diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2016-10-17 13:36:50 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2016-10-17 13:36:50 +0000 |
| commit | cf8fb39f7d59c15be5b62a2ae3f65a16be1b662b (patch) | |
| tree | d7e9d452856eb74a2456605e586dac8d8e30c41a /usr.bin/elfdump/elfdump.c | |
| parent | 6bfde4a6fb2d67f7eef690fa46d3fcef0b129a20 (diff) | |
Notes
Diffstat (limited to 'usr.bin/elfdump/elfdump.c')
| -rw-r--r-- | usr.bin/elfdump/elfdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/elfdump/elfdump.c b/usr.bin/elfdump/elfdump.c index 3cffc9138743..32839254d7b8 100644 --- a/usr.bin/elfdump/elfdump.c +++ b/usr.bin/elfdump/elfdump.c @@ -241,9 +241,9 @@ d_tags(u_int64_t tag) case 0x6ffffff0: return "DT_GNU_VERSYM"; /* 0x70000000 - 0x7fffffff processor-specific semantics */ case 0x70000000: return "DT_IA_64_PLT_RESERVE"; - case 0x7ffffffd: return "DT_SUNW_AUXILIARY"; - case 0x7ffffffe: return "DT_SUNW_USED"; - case 0x7fffffff: return "DT_SUNW_FILTER"; + case DT_AUXILIARY: return "DT_AUXILIARY"; + case DT_USED: return "DT_USED"; + case DT_FILTER: return "DT_FILTER"; } snprintf(unknown_tag, sizeof(unknown_tag), "ERROR: TAG NOT DEFINED -- tag 0x%jx", (uintmax_t)tag); |
