From bbe55e4f804585318b680d53f8d324b9d4e6a636 Mon Sep 17 00:00:00 2001 From: reinoud Date: Sat, 10 Dec 2022 20:58:37 +0000 Subject: [PATCH] Update list with file systems who do have fsck adding udf since there is now a fsck_udf. --- usr.sbin/sysinst/disks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/sysinst/disks.c b/usr.sbin/sysinst/disks.c index fc6a01cd3c0d..42f281d1c063 100644 --- a/usr.sbin/sysinst/disks.c +++ b/usr.sbin/sysinst/disks.c @@ -1,4 +1,4 @@ -/* $NetBSD: disks.c,v 1.93 2022/12/10 16:52:02 martin Exp $ */ +/* $NetBSD: disks.c,v 1.94 2022/12/10 20:58:37 reinoud Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -88,12 +88,12 @@ static const char name_prefix[] = NAME_PREFIX; /* things we could have as /sbin/newfs_* and /sbin/fsck_* */ static const char *extern_fs_with_chk[] = { - "ext2fs", "lfs", "msdos", "v7fs" + "ext2fs", "lfs", "msdos", "udf", "v7fs" }; /* things we could have as /sbin/newfs_* but not /sbin/fsck_* */ static const char *extern_fs_newfs_only[] = { - "sysvbfs", "udf" + "sysvbfs" }; /* Local prototypes */