From bd8e2ea28f1846b096ab2ededa74d6f3ca6bfce3 Mon Sep 17 00:00:00 2001 From: Antonio Huete Jimenez Date: Wed, 15 Sep 2010 00:42:28 +0200 Subject: [PATCH] truss - Adapt to the new ELF naming. --- usr.bin/truss/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index eb01321c74..158e82cd68 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -85,8 +85,8 @@ struct ex_types { } ex_types[] = { #ifdef __i386__ { "FreeBSD a.out", i386_syscall_entry, i386_syscall_exit }, - { "FreeBSD ELF", i386_syscall_entry, i386_syscall_exit }, - { "Linux ELF", i386_linux_syscall_entry, i386_linux_syscall_exit }, + { "FreeBSD ELF32", i386_syscall_entry, i386_syscall_exit }, + { "Linux ELF32", i386_linux_syscall_entry, i386_linux_syscall_exit }, #endif { 0, 0, 0 }, }; -- 2.41.0