fix stray MOUNT_UFS -> MOUNT_FFS

This commit is contained in:
jtk 1996-02-17 23:08:36 +00:00
parent 343d6b8d95
commit e8aa4c9806
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: osf1_mount.c,v 1.5 1995/10/07 06:27:24 mycroft Exp $ */ /* $NetBSD: osf1_mount.c,v 1.6 1996/02/17 23:08:36 jtk Exp $ */
/* /*
* Copyright (c) 1994, 1995 Carnegie-Mellon University. * Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -158,7 +158,7 @@ bsd2osf_statfs(bsfs, osfs)
{ {
bzero(osfs, sizeof (struct osf1_statfs)); 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; osfs->f_type = OSF1_MOUNT_UFS;
else if (!strncmp(MOUNT_NFS, bsfs->f_fstypename, MFSNAMELEN)) else if (!strncmp(MOUNT_NFS, bsfs->f_fstypename, MFSNAMELEN))
osfs->f_type = OSF1_MOUNT_NFS; osfs->f_type = OSF1_MOUNT_NFS;