diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-07-26 16:28:51 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-07-26 12:23:20 +0200 |
commit | deb9a05a590245f632ac792f9960e220f4ed1a4f (patch) | |
tree | c31c04472540c891ead964ea430dfe90a4a4df21 | |
parent | 932f0a6af47bf5eec44c80b858598ba9ed69b8e2 (diff) | |
download | samba-deb9a05a590245f632ac792f9960e220f4ed1a4f.tar.gz samba-deb9a05a590245f632ac792f9960e220f4ed1a4f.tar.bz2 samba-deb9a05a590245f632ac792f9960e220f4ed1a4f.zip |
lib/param: Merge "Domain Options" section from source3/param
This will make the merge of the whole table smoother.
Based on an earlier patch
Pair-Programmed-With: Andrew Tridgell <tridge@samba.org>
Andrew Bartlett
-rw-r--r-- | lib/param/loadparm.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index f455a707cf..bbe4d10943 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -849,6 +849,19 @@ static struct parm_struct parm_table[] = { .enum_list = NULL }, + + {N_("Domain Options"), P_SEP, P_SEPARATOR}, + + { + .label = "machine password timeout", + .type = P_INTEGER, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(machine_password_timeout), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED | FLAG_WIZARD, + }, + {N_("Logon Options"), P_SEP, P_SEPARATOR}, { |