diff options
author | 1997-05-28 21:28:36 +0000 | |
---|---|---|
committer | 1997-05-28 21:28:36 +0000 | |
commit | 50ff34484f97ffeaead0caefe4c4c53bc9cb610a (patch) | |
tree | e146eb55ff60427cde32fe12223815f2eb7c5bdc | |
parent | Added a quick paragraph about CD-ROM booting, short, simple, and warns (diff) | |
download | wireguard-openbsd-50ff34484f97ffeaead0caefe4c4c53bc9cb610a.tar.xz wireguard-openbsd-50ff34484f97ffeaead0caefe4c4c53bc9cb610a.zip |
complain if ufs is spotted in /etc/fstab
-rw-r--r-- | sbin/mount/mount.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index 0078da58d6d..d8b678f65c9 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.16 1997/03/10 04:27:42 millert Exp $ */ +/* $OpenBSD: mount.c,v 1.17 1997/05/28 21:28:36 deraadt Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mount.c 8.19 (Berkeley) 4/19/94"; #else -static char rcsid[] = "$OpenBSD: mount.c,v 1.16 1997/03/10 04:27:42 millert Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.17 1997/05/28 21:28:36 deraadt Exp $"; #endif #endif /* not lint */ @@ -594,6 +594,12 @@ disklabelcheck(fs) if (labelfs == NULL || strcmp(labelfs, fs->fs_vfstype) == 0) return (0); + if (strcmp(fs->fs_vfstype, "ufs") == 0 && + strcmp(labelfs, "ffs") == 0) { + warnx("%s: fstab uses outdated type 'ufs' -- fix please", + fs->fs_spec); + return (0); + } warnx("%s: fstab type %s != disklabel type %s", fs->fs_spec, fs->fs_vfstype, labelfs); return (1); |