diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-05-26 20:16:22 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2005-05-26 20:16:22 +0000 |
commit | 82868d3abe48768b7ca926d1bfe121935e82680e (patch) | |
tree | 23dd31c781ef11906a7ca37a2510ced426364dfd /sbin/mount/mount.c | |
parent | 1905d31842ac0f468f084df92eb4afe1380f0a67 (diff) |
remove traces from union et al; pedro@ ok.
Diffstat (limited to 'sbin/mount/mount.c')
-rw-r--r-- | sbin/mount/mount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index e393ba5cdde..662aae00104 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.c,v 1.39 2005/05/26 01:37:49 pedro Exp $ */ +/* $OpenBSD: mount.c,v 1.40 2005/05/26 20:16:21 fgsch Exp $ */ /* $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp $ */ /* @@ -40,7 +40,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.39 2005/05/26 01:37:49 pedro Exp $"; +static char rcsid[] = "$OpenBSD: mount.c,v 1.40 2005/05/26 20:16:21 fgsch Exp $"; #endif #endif /* not lint */ @@ -374,7 +374,7 @@ mountfs(const char *vfstype, const char *spec, const char *name, } else if (skipmounted) { if (statfs(name, &sf) < 0) err(1, "statfs %s", name); - /* XXX can't check f_mntfromname, thanks to mfs, union, etc. */ + /* XXX can't check f_mntfromname, thanks to mfs, etc. */ if (strncmp(name, sf.f_mntonname, MNAMELEN) == 0 && strncmp(vfstype, sf.f_fstypename, MFSNAMELEN) == 0) { if (verbose) |