Always map FS_BSDFFS to one of "FFS", "FFSv2" or "FFSv2ea" - previously

the disklabel name "4.2BSD" could show up initially but we could never
go back to it via the menu used to change the file system type.
This was confusing.
This commit is contained in:
martin 2022-12-10 16:52:02 +00:00
parent 82065f3b3e
commit dacc867e53
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: disks.c,v 1.92 2022/11/30 19:44:06 martin Exp $ */
/* $NetBSD: disks.c,v 1.93 2022/12/10 16:52:02 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -114,7 +114,7 @@ getfslabelname(uint f, uint f_version)
return "mfs";
else if (f == FS_EFI_SP)
return msg_string(MSG_fs_type_efi_sp);
else if (f == FS_BSDFFS && f_version > 0) {
else if (f == FS_BSDFFS) {
switch (f_version) {
default:
case 1: return msg_string(MSG_fs_type_ffs);