talloc: use the system pytalloc-util for python3 as well
[sfrench/samba-autobuild/.git] / lib / param / param_table.c
index c8520d29c5575638edbd6e9b9850e739fe68e58c..95c3b8c61883b8d0080ce0ec330cef5ca5915d58 100644 (file)
@@ -308,6 +308,23 @@ static const struct enum_list enum_case[] = {
        {-1, NULL}
 };
 
+static const struct enum_list enum_inherit_owner_vals[] = {
+    {INHERIT_OWNER_NO, "no"},
+    {INHERIT_OWNER_WINDOWS_AND_UNIX, "windows and unix"},
+    {INHERIT_OWNER_WINDOWS_AND_UNIX, "yes"},
+    {INHERIT_OWNER_UNIX_ONLY, "unix only"},
+    {-1, NULL}};
+
+static const struct enum_list enum_mangled_names[] = {
+       {MANGLED_NAMES_NO, "no"},
+       {MANGLED_NAMES_NO, "false"},
+       {MANGLED_NAMES_NO, "0"},
+       {MANGLED_NAMES_ILLEGAL, "illegal"},
+       {MANGLED_NAMES_YES, "yes"},
+       {MANGLED_NAMES_YES, "true"},
+       {MANGLED_NAMES_YES, "1"},
+       {-1, NULL}
+};
 
 /* Note: We do not initialise the defaults union - it is not allowed in ANSI C
  *