elfdump: correct DT_AUXILIARY / DT_USED / DT_FILTER definitions
r109332 introduced these three as DT_SUNW_*. Update to the correct names already used elsewhere in FreeBSD and the Sun "Linker and Libraries Guide" MFC after: 1 week Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
4de7693a78
commit
10774e73f3
@ -241,9 +241,9 @@ d_tags(u_int64_t tag)
|
|||||||
case 0x6ffffff0: return "DT_GNU_VERSYM";
|
case 0x6ffffff0: return "DT_GNU_VERSYM";
|
||||||
/* 0x70000000 - 0x7fffffff processor-specific semantics */
|
/* 0x70000000 - 0x7fffffff processor-specific semantics */
|
||||||
case 0x70000000: return "DT_IA_64_PLT_RESERVE";
|
case 0x70000000: return "DT_IA_64_PLT_RESERVE";
|
||||||
case 0x7ffffffd: return "DT_SUNW_AUXILIARY";
|
case DT_AUXILIARY: return "DT_AUXILIARY";
|
||||||
case 0x7ffffffe: return "DT_SUNW_USED";
|
case DT_USED: return "DT_USED";
|
||||||
case 0x7fffffff: return "DT_SUNW_FILTER";
|
case DT_FILTER: return "DT_FILTER";
|
||||||
}
|
}
|
||||||
snprintf(unknown_tag, sizeof(unknown_tag),
|
snprintf(unknown_tag, sizeof(unknown_tag),
|
||||||
"ERROR: TAG NOT DEFINED -- tag 0x%jx", (uintmax_t)tag);
|
"ERROR: TAG NOT DEFINED -- tag 0x%jx", (uintmax_t)tag);
|
||||||
|
Loading…
Reference in New Issue
Block a user