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/fsck_ffs/main.c | |
parent | 6f9ab36e2d02933f496e5de2596a237ebf9650e4 (diff) |
complete ufs -> ffs change (From John Kohl; PR #1403)
Diffstat (limited to 'sbin/fsck_ffs/main.c')
-rw-r--r-- | sbin/fsck_ffs/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c index 128005b6fe5..d5cd4107794 100644 --- a/sbin/fsck_ffs/main.c +++ b/sbin/fsck_ffs/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.18 1995/07/12 03:39:53 cgd Exp $ */ +/* $NetBSD: main.c,v 1.18.2.1 1995/11/01 00:06:18 jtc Exp $ */ /* * Copyright (c) 1980, 1986, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/23/94"; #else -static char rcsid[] = "$NetBSD: main.c,v 1.18 1995/07/12 03:39:53 cgd Exp $"; +static char rcsid[] = "$NetBSD: main.c,v 1.18.2.1 1995/11/01 00:06:18 jtc Exp $"; #endif #endif /* not lint */ @@ -330,7 +330,7 @@ checkfilesys(filesys, mntpt, auxdata, child) args.export.ex_flags = 0; args.export.ex_root = 0; flags |= MNT_UPDATE | MNT_RELOAD; - ret = mount(MOUNT_UFS, "/", flags, &args); + ret = mount(MOUNT_FFS, "/", flags, &args); if (ret == 0) return(0); } |