diff options
author | 2006-08-15 20:27:41 +0000 | |
---|---|---|
committer | 2006-08-15 20:27:41 +0000 | |
commit | 73274f4484aca2d124ffeba8ad426acd56644679 (patch) | |
tree | 41d9ebb5a9960ede0e5374d7f771cd2b457cd4e1 | |
parent | A more reliable LCSPX probe, based on information from Blaz Antonic, tested (diff) | |
download | wireguard-openbsd-73274f4484aca2d124ffeba8ad426acd56644679.tar.xz wireguard-openbsd-73274f4484aca2d124ffeba8ad426acd56644679.zip |
Some VS4k/90 have the uVAX bit set in confdata, do not report them as uVAXens.
-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 |