diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-08-15 20:27:42 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-08-15 20:27:42 +0000 |
commit | c53eefd8666b16d69642818da9074616419b2e4d (patch) | |
tree | 191a6894343158ea622fa1000aea8534fbedf08c /sys/arch/vax | |
parent | 021655257d6491f8ae303edbfedb263beec410dd (diff) |
Some VS4k/90 have the uVAX bit set in confdata, do not report them as uVAXens.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/locore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/vax/locore.c b/sys/arch/vax/vax/locore.c index 4e08c6246da..01cd4adf942 100644 --- a/sys/arch/vax/vax/locore.c +++ b/sys/arch/vax/vax/locore.c @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.c,v 1.30 2006/07/30 18:31:49 miod Exp $ */ +/* $OpenBSD: locore.c,v 1.31 2006/08/15 20:27:41 miod Exp $ */ /* $NetBSD: locore.c,v 1.43 2000/03/26 11:39:45 ragge Exp $ */ /* * Copyright (c) 1994, 1998 Ludd, University of Lule}, Sweden. @@ -183,7 +183,7 @@ start(struct rpb *prpb) #if VAX49 case VAX_BTYP_49: dep_call = &ka49_calls; - strlcat(cpu_model, "4000/90", sizeof cpu_model); + strlcpy(cpu_model, "VAXstation 4000/90", sizeof cpu_model); break; #endif #if VAX53 |