+Wed Mar 8 09:42:43 EST 2000 Neil Brown <neilb@cse.unsw.edu.au>
+
+ * utils/exportfs/exportfs.c (dump): Included printing of
+ nohide, no_subtree_check, and insecure_locks
+
2000-02-26 Chip Salzenberg <chip@valinux.com>
* config.mk.in (INSTALLSUID): Strip ("-s").
* utils/lockd/Makefile: Install it.
* utils/nhfsstone/nhfs{run,nums,graph}.man: Create.
* utils/nhfsstone/nhfsstone.man: Change suffix from ".1".
- * utils/nhfsstone/Makefile: Install the helper scripts ann
+ * utils/nhfsstone/Makefile: Install the helper scripts and
all four man pages.
* utils/exportfs/exports.man: Fix typo.
c = dumpopt(c, "async");
if (ep->e_flags & NFSEXP_GATHERED_WRITES)
c = dumpopt(c, "wdelay");
+ if (ep->e_flags & NFSEXP_CROSSMNT)
+ c = dumpopt(c, "nohide");
if (ep->e_flags & NFSEXP_INSECURE_PORT)
c = dumpopt(c, "insecure");
if (ep->e_flags & NFSEXP_ROOTSQUASH)
c = dumpopt(c, "no_root_squash");
if (ep->e_flags & NFSEXP_ALLSQUASH)
c = dumpopt(c, "all_squash");
+ if (ep->e_flags & NFSEXP_NOSUBTREECHECK)
+ c = dumpopt(c, "no_subtree_check");
+ if (ep->e_flags & NFSEXP_NOAUTHNLM)
+ c = dumpopt(c, "insecure_locks");
if (ep->e_maptype == CLE_MAP_UGIDD)
c = dumpopt(c, "mapping=ugidd");
else if (ep->e_maptype == CLE_MAP_FILE)