From a53077711bd4883c6a7eaedd6aeeb2cc08b51815 Mon Sep 17 00:00:00 2001 From: deraadt Date: Tue, 3 Sep 1996 11:16:47 +0000 Subject: [PATCH] detect wrong architecture --- usr.bin/size/size.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/usr.bin/size/size.c b/usr.bin/size/size.c index bd47d1f72f8..8c12930c6d9 100644 --- a/usr.bin/size/size.c +++ b/usr.bin/size/size.c @@ -1,4 +1,4 @@ -/* $OpenBSD: size.c,v 1.3 1996/06/26 05:39:18 deraadt Exp $ */ +/* $OpenBSD: size.c,v 1.4 1996/09/03 11:16:47 deraadt Exp $ */ /* $NetBSD: size.c,v 1.7 1996/01/14 23:07:12 pk Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)size.c 8.2 (Berkeley) 12/9/93"; #endif -static char rcsid[] = "$OpenBSD: size.c,v 1.3 1996/06/26 05:39:18 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: size.c,v 1.4 1996/09/03 11:16:47 deraadt Exp $"; #endif /* not lint */ #include @@ -232,6 +232,11 @@ show_archive(count, fname, fp) warnx("%s: bad format", name); rval = 1; } + } else if (N_GETMID(exec_head) != MID_MACHINE) { + if (!ignore_bad_archive_entries) { + warnx("%s: wrong architecture", name); + rval = 1; + } } else { (void)fseek(fp, (long)-sizeof(exec_head), SEEK_CUR); @@ -274,6 +279,11 @@ show_objfile(count, name, fp) return(1); } + if (N_GETMID(head) != MID_MACHINE) { + warnx("%s: wrong architecture", name); + return(1); + } + if (first) { first = 0; (void)printf("text\tdata\tbss\tdec\thex\n"); -- 2.20.1