From 7ed000f7746c27550de368684e917a3790a92d0e Mon Sep 17 00:00:00 2001 From: Semen Ustimenko Date: Tue, 6 Aug 2002 20:26:30 +0000 Subject: [PATCH] Fix -o ac(reg|dir)(min|max) options. The appropriate flags weren't translated from ALTF_* to NFSMNT_* thus these options weren't accepted by kernel. PR: bin/30334 MFC after: 1 week --- sbin/mount_nfs/mount_nfs.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbin/mount_nfs/mount_nfs.c b/sbin/mount_nfs/mount_nfs.c index 825febede1b8..07a19019ff58 100644 --- a/sbin/mount_nfs/mount_nfs.c +++ b/sbin/mount_nfs/mount_nfs.c @@ -230,6 +230,10 @@ set_flags(int* altflags, int* nfsflags, int dir) F(RDIRPLUS); F(RESVPORT); F(SOFT); + F(ACREGMIN); + F(ACREGMAX); + F(ACDIRMIN); + F(ACDIRMAX); F(NOLOCKD); #undef F