Module Name:    src
Committed By:   martin
Date:           Mon Jun 17 14:19:45 UTC 2019

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

Log Message:
Fix bogus return value from md_post_newfs


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/sysinst/arch/landisk/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/landisk/md.c
diff -u src/usr.sbin/sysinst/arch/landisk/md.c:1.6 src/usr.sbin/sysinst/arch/landisk/md.c:1.7
--- src/usr.sbin/sysinst/arch/landisk/md.c:1.6	Thu Jun 13 09:36:55 2019
+++ src/usr.sbin/sysinst/arch/landisk/md.c	Mon Jun 17 14:19:44 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.6 2019/06/13 09:36:55 martin Exp $	*/
+/*	$NetBSD: md.c,v 1.7 2019/06/17 14:19:44 martin Exp $	*/
 
 /*
  * Copyright 1997,2002 Piermont Information Systems Inc.
@@ -165,7 +165,7 @@ md_post_newfs(struct install_partition_d
 		process_menu(MENU_ok,
 		    __UNCONST("Warning: disk is probably not bootable"));
 
-	return true;
+	return 0;
 }
 
 int

Reply via email to