aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_nfs
diff options
context:
space:
mode:
authorSemen Ustimenko <semenu@FreeBSD.org>2002-08-06 20:26:30 +0000
committerSemen Ustimenko <semenu@FreeBSD.org>2002-08-06 20:26:30 +0000
commit7ed000f7746c27550de368684e917a3790a92d0e (patch)
tree91e802fd0b04a86fa70f40a09d8e852428b3d62b /sbin/mount_nfs
parentab6fc18e52cfed1b594b02be3ac5615510c72f39 (diff)
downloadsrc-7ed000f7746c27550de368684e917a3790a92d0e.tar.gz
src-7ed000f7746c27550de368684e917a3790a92d0e.zip
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
Notes
Notes: svn path=/head/; revision=101440
Diffstat (limited to 'sbin/mount_nfs')
-rw-r--r--sbin/mount_nfs/mount_nfs.c4
1 files changed, 4 insertions, 0 deletions
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