From: Antonio Huete Jimenez Date: Tue, 14 Sep 2010 22:42:28 +0000 (+0200) Subject: truss - Adapt to the new ELF naming. X-Git-Tag: v2.9.0~128^2~2 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/bd8e2ea28f1846b096ab2ededa74d6f3ca6bfce3 truss - Adapt to the new ELF naming. --- 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 }, };