summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorchuck <chuck@cvs.openbsd.org>1995-11-07 00:13:39 +0000
committerchuck <chuck@cvs.openbsd.org>1995-11-07 00:13:39 +0000
commitebb1e6ccb84f04494b11536b949c60e96e5eef03 (patch)
tree8a76b52a1f904da24a5a74b6c47f4f7f2a440fea /sys
parentdb5edc5acfb074c0029fb953e228d0ba157d57ef (diff)
fix type-o by pk. a sun4 cpumodel looks like "SUN-4" rather than
"SUN/4" ... sun4's definitely do *not* want the a.out header installed.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sparc/stand/installboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/sparc/stand/installboot.c b/sys/arch/sparc/stand/installboot.c
index ec04556b7e7..7e9b711ac26 100644
--- a/sys/arch/sparc/stand/installboot.c
+++ b/sys/arch/sparc/stand/installboot.c
@@ -133,7 +133,7 @@ main(argc, argv)
if (sysctl(mib, 2, cpumodel, &size, NULL, 0) == -1)
err(1, "sysctl");
- if (size < 5 || strncmp(cpumodel, "SUN/4", 5) != 0) /*XXX*/
+ if (size < 5 || strncmp(cpumodel, "SUN-4", 5) != 0) /*XXX*/
/* Assume a sun4c/sun4m */
hflag = 1;