svn commit: r209757 - head/cddl/compat/opensolaris/misc

Martin Matuska mm at FreeBSD.org
Wed Jul 7 07:09:33 UTC 2010


Author: mm
Date: Wed Jul  7 07:09:33 2010
New Revision: 209757
URL: http://svn.freebsd.org/changeset/base/209757

Log:
  - Add support for the "sec" option to "zfs set sharenfs"
  
  Submitted by:	Dmitry Morozovsky <marck at FreeBSD.org>
  Approved by:	delphij (mentor)
  MFC after:	3 days

Modified:
  head/cddl/compat/opensolaris/misc/fsshare.c

Modified: head/cddl/compat/opensolaris/misc/fsshare.c
==============================================================================
--- head/cddl/compat/opensolaris/misc/fsshare.c	Wed Jul  7 06:06:54 2010	(r209756)
+++ head/cddl/compat/opensolaris/misc/fsshare.c	Wed Jul  7 07:09:33 2010	(r209757)
@@ -110,11 +110,11 @@ getline(FILE *fd, const char *skip)
  *
  * Recognized keywords:
  *
- *	ro, maproot, mapall, mask, network, alldirs, public, webnfs, index, quiet
+ *	ro, maproot, mapall, mask, network, sec, alldirs, public, webnfs, index, quiet
  *
  */
 static const char *known_opts[] = { "ro", "maproot", "mapall", "mask",
-    "network", "alldirs", "public", "webnfs", "index", "quiet", NULL };
+    "network", "sec", "alldirs", "public", "webnfs", "index", "quiet", NULL };
 static char *
 translate_opts(const char *shareopts)
 {


More information about the svn-src-all mailing list