diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 21:21:51 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-18 21:21:51 +0000 |
commit | 978f49b07eda30472d402394cf556da0873c9ac8 (patch) | |
tree | ece61b27d7369bb7fa11fd7fbd739bd32dbfa57b /sys/compat/osf1/osf1_mount.c | |
parent | bb5bb38ef44e5df2b16e0d24f7542d8dd541cbba (diff) |
Merge of NetBSD 960317
Diffstat (limited to 'sys/compat/osf1/osf1_mount.c')
-rw-r--r-- | sys/compat/osf1/osf1_mount.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/osf1/osf1_mount.c b/sys/compat/osf1/osf1_mount.c index b02a42bf700..ca7d6879adb 100644 --- a/sys/compat/osf1/osf1_mount.c +++ b/sys/compat/osf1/osf1_mount.c @@ -1,4 +1,5 @@ -/* $NetBSD: osf1_mount.c,v 1.5 1995/10/07 06:27:24 mycroft Exp $ */ +/* $OpenBSD: osf1_mount.c,v 1.2 1996/04/18 21:21:41 niklas Exp $ */ +/* $NetBSD: osf1_mount.c,v 1.6 1996/02/17 23:08:36 jtk Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. @@ -158,7 +159,7 @@ bsd2osf_statfs(bsfs, osfs) { bzero(osfs, sizeof (struct osf1_statfs)); - if (!strncmp(MOUNT_UFS, bsfs->f_fstypename, MFSNAMELEN)) + if (!strncmp(MOUNT_FFS, bsfs->f_fstypename, MFSNAMELEN)) osfs->f_type = OSF1_MOUNT_UFS; else if (!strncmp(MOUNT_NFS, bsfs->f_fstypename, MFSNAMELEN)) osfs->f_type = OSF1_MOUNT_NFS; |