summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/compat/freebsd/freebsd_file.c2
-rw-r--r--sys/compat/ibcs2/ibcs2_misc.c2
-rw-r--r--sys/compat/sunos/sunos_misc.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/freebsd/freebsd_file.c b/sys/compat/freebsd/freebsd_file.c
index c0487897249..26f2819e7d1 100644
--- a/sys/compat/freebsd/freebsd_file.c
+++ b/sys/compat/freebsd/freebsd_file.c
@@ -60,7 +60,7 @@ convert_from_freebsd_mount_type(type)
{
static char *netbsd_mount_type[] = {
NULL, /* 0 = MOUNT_NONE */
- "ufs", /* 1 = UNIX "Fast" Filesystem */
+ "ffs", /* 1 = "Fast" Filesystem */
"nfs", /* 2 = Network Filesystem */
"mfs", /* 3 = Memory Filesystem */
"msdos", /* 4 = MSDOS Filesystem */
diff --git a/sys/compat/ibcs2/ibcs2_misc.c b/sys/compat/ibcs2/ibcs2_misc.c
index b4be03db094..223348f457f 100644
--- a/sys/compat/ibcs2/ibcs2_misc.c
+++ b/sys/compat/ibcs2/ibcs2_misc.c
@@ -276,7 +276,7 @@ ibcs2_sys_mount(p, v, retval)
if (strncmp(fsname, "4.2", sizeof fsname) == 0) {
SCARG(uap, type) = (caddr_t)STACK_ALLOC();
- if (error = copyout("ufs", SCARG(uap, type), sizeof("ufs")))
+ if (error = copyout("ffs", SCARG(uap, type), sizeof("ffs")))
return (error);
} else if (strncmp(fsname, "nfs", sizeof fsname) == 0) {
struct ibcs2_nfs_args sna;
diff --git a/sys/compat/sunos/sunos_misc.c b/sys/compat/sunos/sunos_misc.c
index caf3b6275ec..cd87c67d981 100644
--- a/sys/compat/sunos/sunos_misc.c
+++ b/sys/compat/sunos/sunos_misc.c
@@ -247,7 +247,7 @@ sunos_sys_mount(p, v, retval)
if (strncmp(fsname, "4.2", sizeof fsname) == 0) {
SCARG(uap, type) = STACKGAPBASE;
- if (error = copyout("ufs", SCARG(uap, type), sizeof("ufs")))
+ if (error = copyout("ffs", SCARG(uap, type), sizeof("ffs")))
return (error);
} else if (strncmp(fsname, "nfs", sizeof fsname) == 0) {
struct sunos_nfs_args sna;