diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-11-06 21:34:01 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-11-06 21:34:01 +0000 |
commit | 15dd687411b0d5324e180e253f4562f48428ed2f (patch) | |
tree | 286e9e3eb21aa6cce6f308422deef8a9247fa05c /usr.bin/elf2olf | |
parent | c615258a6d77bb9d85f87ebc72609a485b248162 (diff) |
Negative logic. Cleanup output.
Diffstat (limited to 'usr.bin/elf2olf')
-rw-r--r-- | usr.bin/elf2olf/elf2olf.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/usr.bin/elf2olf/elf2olf.c b/usr.bin/elf2olf/elf2olf.c index 4b984b4255c..2b419ca99a4 100644 --- a/usr.bin/elf2olf/elf2olf.c +++ b/usr.bin/elf2olf/elf2olf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: elf2olf.c,v 1.1 1996/11/06 21:13:50 etheisen Exp $ */ +/* $OpenBSD: elf2olf.c,v 1.2 1996/11/06 21:34:00 etheisen Exp $ */ /* * Copyright (c) 1996 Erik Theisen. All rights reserved. * @@ -30,7 +30,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char rcsid[] = "@(#) $Id: elf2olf.c,v 1.1 1996/11/06 21:13:50 etheisen Exp $"; +static char rcsid[] = "@(#) $Id: elf2olf.c,v 1.2 1996/11/06 21:34:00 etheisen Exp $"; #endif #include <stdlib.h> @@ -194,13 +194,17 @@ main(int argc, char*argv[]) if (write(fd, &ehdr, sizeof(Elf32_Ehdr)) == sizeof(Elf32_Ehdr)) { if (verbose) { if (!olf2elf) { - printf("%s ELF => %s %s %s OLF.\n", - *argv, *argv, - ehdr.e_ident[OI_STRIP] ? \ - "stripped" : "unstripped", - os_namev[ehdr.e_ident[OI_OS]]); + printf("ELF %s => OLF %d-bit %s %s linked %s OLF.\n", + *argv, + (ehdr.e_ident[OI_CLASS] == OLFCLASS32)?\ + 32 : 64, + os_namev[ehdr.e_ident[OI_OS]], + ehdr.e_ident[OI_DYNAMIC] ? \ + "dynamically" : "statically", + !ehdr.e_ident[OI_STRIP] ? + "stripped" : "unstripped"); } else - printf("%s OLF => %s ELF.\n", *argv, *argv); + printf("OLF %s => ELF.\n", *argv); } } else /* bad write */ warn(progname, *argv, errno); |