From c0c4b3be249ae3cb79a5d3fbdb8563c02e552ad5 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 1 Jun 1998 11:07:16 +0000 Subject: [PATCH] Fix post-test pre-commit cleanup typo. --- sys/nfs/nfs_vfsops.c | 4 ++-- sys/nfsclient/nfs_vfsops.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 74c3ee778c6..9aec4083bb1 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.69 1998/05/31 20:08:56 peter Exp $ + * $Id: nfs_vfsops.c,v 1.70 1998/06/01 10:01:31 peter Exp $ */ #include @@ -859,7 +859,7 @@ mountnfs(argp, mp, nam, pth, hst, vpp) * XXX Our "safe" limit on the client is what we can store in our * buffer cache using signed(!) block numbers. */ - if ((argp->flags & NFSMNT_NFSV3) == 0) { + if ((argp->flags & NFSMNT_NFSV3) == 0) nmp->nm_maxfilesize = 0xffffffffLL; else nmp->nm_maxfilesize = (u_int64_t)0x80000000 * DEV_BSIZE - 1; diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 74c3ee778c6..9aec4083bb1 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.69 1998/05/31 20:08:56 peter Exp $ + * $Id: nfs_vfsops.c,v 1.70 1998/06/01 10:01:31 peter Exp $ */ #include @@ -859,7 +859,7 @@ mountnfs(argp, mp, nam, pth, hst, vpp) * XXX Our "safe" limit on the client is what we can store in our * buffer cache using signed(!) block numbers. */ - if ((argp->flags & NFSMNT_NFSV3) == 0) { + if ((argp->flags & NFSMNT_NFSV3) == 0) nmp->nm_maxfilesize = 0xffffffffLL; else nmp->nm_maxfilesize = (u_int64_t)0x80000000 * DEV_BSIZE - 1;