Module Name:    src
Committed By:   martin
Date:           Mon Mar  9 17:10:31 UTC 2020

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

Log Message:
The (unused) md_pre_disklabel() function needs to return success, otherwise
all installations will be aborted.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/sysinst/arch/alpha/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/alpha/md.c
diff -u src/usr.sbin/sysinst/arch/alpha/md.c:1.7 src/usr.sbin/sysinst/arch/alpha/md.c:1.8
--- src/usr.sbin/sysinst/arch/alpha/md.c:1.7	Sun Dec 15 13:39:24 2019
+++ src/usr.sbin/sysinst/arch/alpha/md.c	Mon Mar  9 17:10:31 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: md.c,v 1.7 2019/12/15 13:39:24 martin Exp $ */
+/*	$NetBSD: md.c,v 1.8 2020/03/09 17:10:31 martin Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -126,7 +126,7 @@ bool
 md_pre_disklabel(struct install_partition_desc *install,
     struct disk_partitions *part)
 {
-	return 0;
+	return true;
 }
 
 /*

Reply via email to