From d669807570d62fce05ee366809c13ea0309c070a Mon Sep 17 00:00:00 2001 From: Christos Zoulas Date: Fri, 23 Nov 2012 12:12:21 -0500 Subject: [PATCH] recognize noacl --- libamu/mount_fs.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libamu/mount_fs.c b/libamu/mount_fs.c index 56a936f7..92a80537 100644 --- a/libamu/mount_fs.c +++ b/libamu/mount_fs.c @@ -609,6 +609,11 @@ compute_nfs_common_args(struct nfs_common_args *nap, mntent_t *mntp, # endif /* MNT2_NFS_OPT_NOINT */ #endif /* MNTTAB_OPT_INTR */ +#ifdef MNT2_NFS_OPT_NOACL + if (amu_hasmntopt(mntp, MNTTAB_OPT_NOACL) != NULL) + nap->flags |= MNT2_NFS_OPT_NOACL; +#endif /* MNT2_NFS_OPT_NOACL */ + #ifdef MNTTAB_OPT_NODEVS if (amu_hasmntopt(mntp, MNTTAB_OPT_NODEVS) != NULL) nap->flags |= MNT2_NFS_OPT_NODEVS; -- 2.34.1