svn commit: r270304 - head/usr.bin/elfdump

Ed Maste emaste at FreeBSD.org
Thu Aug 21 20:58:44 UTC 2014


Author: emaste
Date: Thu Aug 21 20:58:43 2014
New Revision: 270304
URL: http://svnweb.freebsd.org/changeset/base/270304

Log:
  elfdump: Remove extraneous _SUNW_ in reported DT_ names
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.bin/elfdump/elfdump.c

Modified: head/usr.bin/elfdump/elfdump.c
==============================================================================
--- head/usr.bin/elfdump/elfdump.c	Thu Aug 21 20:55:10 2014	(r270303)
+++ head/usr.bin/elfdump/elfdump.c	Thu Aug 21 20:58:43 2014	(r270304)
@@ -221,11 +221,11 @@ d_tags(u_int64_t tag)
 	case DT_GNU_HASH:	return "DT_GNU_HASH";
 	case 0x6ffffef8:	return "DT_GNU_CONFLICT";
 	case 0x6ffffef9:	return "DT_GNU_LIBLIST";
-	case 0x6ffffefa:	return "DT_SUNW_CONFIG";
-	case 0x6ffffefb:	return "DT_SUNW_DEPAUDIT";
-	case 0x6ffffefc:	return "DT_SUNW_AUDIT";
-	case 0x6ffffefd:	return "DT_SUNW_PLTPAD";
-	case 0x6ffffefe:	return "DT_SUNW_MOVETAB";
+	case DT_CONFIG:		return "DT_CONFIG";
+	case DT_DEPAUDIT:	return "DT_DEPAUDIT";
+	case DT_AUDIT:		return "DT_AUDIT";
+	case DT_PLTPAD:		return "DT_PLTPAD";
+	case DT_MOVETAB:	return "DT_MOVETAB";
 	case DT_SYMINFO :	return "DT_SYMINFO (DT_ADDRRNGHI)";
 	case DT_RELACOUNT:	return "DT_RELACOUNT";
 	case DT_RELCOUNT:	return "DT_RELCOUNT";


More information about the svn-src-head mailing list