diff options
-rw-r--r-- | usr.sbin/bsdinstall/partedit/gpart_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/partedit/gpart_ops.c b/usr.sbin/bsdinstall/partedit/gpart_ops.c index b55caf4..f0736f8 100644 --- a/usr.sbin/bsdinstall/partedit/gpart_ops.c +++ b/usr.sbin/bsdinstall/partedit/gpart_ops.c @@ -862,7 +862,7 @@ addpartform: * If the user changed the fs type after specifying options, undo * their choices in favor of the new filesystem's defaults. */ - if (strcmp(options_fstype, items[0].name) != 0) { + if (strcmp(options_fstype, items[0].text) != 0) { strncpy(options_fstype, items[0].text, sizeof(options_fstype)); newfs_command(options_fstype, newfs, 1); } |