diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-13 04:06:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-13 04:06:22 +0000 |
commit | c3cf5b142e8c0e3c80886a259cb38a996607ac74 (patch) | |
tree | 35c36f4d0efe32f68fa486d8e1a2c1a83d1de8b7 /sys | |
parent | e38fcdabebf22884e36e7465bac6789f531e54d6 (diff) |
ufs ==> ffs
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/freebsd/freebsd_file.c | 2 | ||||
-rw-r--r-- | sys/compat/ibcs2/ibcs2_misc.c | 2 | ||||
-rw-r--r-- | sys/compat/sunos/sunos_misc.c | 2 |
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; |