Module Name:    src
Committed By:   tsutsui
Date:           Thu Jan  4 18:09:37 UTC 2024

Modified Files:
        src/usr.sbin/sysinst/arch/atari: md.c

Log Message:
Fix a typo of a kernel name on detecting a running machine type.

Should be pulled up to netbsd-10.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/usr.sbin/sysinst/arch/atari/md.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/sysinst/arch/atari/md.c
diff -u src/usr.sbin/sysinst/arch/atari/md.c:1.10 src/usr.sbin/sysinst/arch/atari/md.c:1.11
--- src/usr.sbin/sysinst/arch/atari/md.c:1.10	Fri Dec  9 17:02:13 2022
+++ src/usr.sbin/sysinst/arch/atari/md.c	Thu Jan  4 18:09:37 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.10 2022/12/09 17:02:13 martin Exp $ */
+/*	$NetBSD: md.c,v 1.11 2024/01/04 18:09:37 tsutsui Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -73,7 +73,7 @@ md_init_set_status(int flags)
 		set_kernel_set(SET_KERNEL_4);
 	else if (strstr(instsys.version, "(MILAN-ISAIDE"))
 		set_kernel_set(SET_KERNEL_5);
-	else if (strstr(instsys.version, "(MILAN_PCIIDE"))
+	else if (strstr(instsys.version, "(MILAN-PCIIDE"))
 		set_kernel_set(SET_KERNEL_6);
 }
 

Reply via email to