aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ldd
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2021-01-09 18:34:58 +0000
committerEd Maste <emaste@FreeBSD.org>2021-01-09 18:34:58 +0000
commitc8eee7c0bf9a01303c75b4c3ac644b99adc70ca9 (patch)
tree0051025372a6ad50f20b31f1204fde1fde2cea9d /usr.bin/ldd
parent12a8d3027d414abd15798de1b6d8b01151bdac50 (diff)
downloadsrc-c8eee7c0bf9a01303c75b4c3ac644b99adc70ca9.tar.gz
src-c8eee7c0bf9a01303c75b4c3ac644b99adc70ca9.zip
ldd: renumber executable type constants
ldd had #defines for AOUT, ELF, and ELF32. The removal of AOUT left a possibly confusing gap. These are not used anywhere but this file so renumber to avoid the gap. Reported by: allanjude
Diffstat (limited to 'usr.bin/ldd')
-rw-r--r--usr.bin/ldd/ldd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ldd/ldd.c b/usr.bin/ldd/ldd.c
index 892cf9bb3cc5..08c91d829bd7 100644
--- a/usr.bin/ldd/ldd.c
+++ b/usr.bin/ldd/ldd.c
@@ -72,9 +72,9 @@ static int is_executable(const char *fname, int fd, int *is_shlib,
static void usage(void);
#define TYPE_UNKNOWN 0
-#define TYPE_ELF 2 /* Architecture default */
+#define TYPE_ELF 1 /* Architecture default */
#if __ELF_WORD_SIZE > 32 && defined(ELF32_SUPPORTED)
-#define TYPE_ELF32 3 /* Explicit 32 bits on architectures >32 bits */
+#define TYPE_ELF32 2 /* Explicit 32 bits on architectures >32 bits */
#define _PATH_LDD32 "/usr/bin/ldd32"