diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-06 21:11:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-11-06 21:11:47 +0000 |
commit | a7907d088cd0d07cdc37c3464833376f03a7e3ef (patch) | |
tree | 8cac63f6a9969a46756be8d9abe1fb8d05476b02 /sbin/mount_ffs/mount_ffs.c | |
parent | 6f9ab36e2d02933f496e5de2596a237ebf9650e4 (diff) |
complete ufs -> ffs change (From John Kohl; PR #1403)
Diffstat (limited to 'sbin/mount_ffs/mount_ffs.c')
-rw-r--r-- | sbin/mount_ffs/mount_ffs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_ffs/mount_ffs.c b/sbin/mount_ffs/mount_ffs.c index 043f8b3535e..1ba1743f34f 100644 --- a/sbin/mount_ffs/mount_ffs.c +++ b/sbin/mount_ffs/mount_ffs.c @@ -1,4 +1,4 @@ -/* $NetBSD: mount_ffs.c,v 1.1 1995/07/12 03:46:50 cgd Exp $ */ +/* $NetBSD: mount_ffs.c,v 1.1.2.1 1995/11/01 00:06:20 jtc Exp $ */ /*- * Copyright (c) 1993, 1994 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount_ufs.c 8.2 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$NetBSD: mount_ffs.c,v 1.1 1995/07/12 03:46:50 cgd Exp $"; +static char rcsid[] = "$NetBSD: mount_ffs.c,v 1.1.2.1 1995/11/01 00:06:20 jtc Exp $"; #endif #endif /* not lint */ @@ -107,7 +107,7 @@ main(argc, argv) else args.export.ex_flags = 0; - if (mount(MOUNT_UFS, fs_name, mntflags, &args) < 0) { + if (mount(MOUNT_FFS, fs_name, mntflags, &args) < 0) { switch (errno) { case EMFILE: errcause = "mount table full"; |