Module Name:    src
Committed By:   martin
Date:           Mon Mar 30 12:19:28 UTC 2020

Modified Files:
        src/usr.sbin/sysinst: gpt.c

Log Message:
Ooops, fix previous (PT_* enum values here are not DKW_PTYPE_* values)


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.sbin/sysinst/gpt.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/gpt.c
diff -u src/usr.sbin/sysinst/gpt.c:1.17 src/usr.sbin/sysinst/gpt.c:1.18
--- src/usr.sbin/sysinst/gpt.c:1.17	Mon Mar 30 10:42:49 2020
+++ src/usr.sbin/sysinst/gpt.c	Mon Mar 30 12:19:28 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: gpt.c,v 1.17 2020/03/30 10:42:49 martin Exp $	*/
+/*	$NetBSD: gpt.c,v 1.18 2020/03/30 12:19:28 martin Exp $	*/
 
 /*
  * Copyright 2018 The NetBSD Foundation, Inc.
@@ -113,7 +113,7 @@ struct {
 	{ .name = "vmcore",	.fstype = FS_VMKCORE,	.ptype = PT_unknown },
 	{ .name = "vmfs",	.fstype = FS_VMFS,	.ptype = PT_unknown },
 	{ .name = "vmresered",	.fstype = FS_VMWRESV,	.ptype = PT_unknown },
-	{ .name = "zfs",	.fstype = FS_ZFS,	.ptype = PT_ZFS },
+	{ .name = "zfs",	.fstype = FS_ZFS,	.ptype = PT_root },
 };
 
 static size_t gpt_ptype_cnt = 0, gpt_ptype_alloc = 0;

Reply via email to