ufs ==> ffs

This commit is contained in:
gwr 1995-11-07 22:27:21 +00:00
parent 54ec9fb697
commit 883be4be3a
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_file.c,v 1.1 1995/10/10 01:19:30 mycroft Exp $ */
/* $NetBSD: freebsd_file.c,v 1.2 1995/11/07 22:27:21 gwr Exp $ */
/*
* Copyright (c) 1995 Frank van der Linden
@ -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 */

View File

@ -1,4 +1,4 @@
/* $NetBSD: ibcs2_misc.c,v 1.11 1995/10/09 11:24:01 mycroft Exp $ */
/* $NetBSD: ibcs2_misc.c,v 1.12 1995/11/07 22:27:30 gwr Exp $ */
/*
* Copyright (c) 1994, 1995 Scott Bartram
@ -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;

View File

@ -1,4 +1,4 @@
/* $NetBSD: sunos_misc.c,v 1.57 1995/10/11 12:50:23 pk Exp $ */
/* $NetBSD: sunos_misc.c,v 1.58 1995/11/07 22:27:33 gwr Exp $ */
/*
* Copyright (c) 1992, 1993
@ -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;