svn commit: r307834 - stable/10/usr.bin/elfdump
Ed Maste
emaste at FreeBSD.org
Mon Oct 24 00:46:40 UTC 2016
Author: emaste
Date: Mon Oct 24 00:46:38 2016
New Revision: 307834
URL: https://svnweb.freebsd.org/changeset/base/307834
Log:
MFC r307520: 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"
Modified:
stable/10/usr.bin/elfdump/elfdump.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.bin/elfdump/elfdump.c
==============================================================================
--- stable/10/usr.bin/elfdump/elfdump.c Mon Oct 24 00:39:04 2016 (r307833)
+++ stable/10/usr.bin/elfdump/elfdump.c Mon Oct 24 00:46:38 2016 (r307834)
@@ -240,9 +240,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);
More information about the svn-src-all
mailing list