diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-05-28 14:53:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-30 04:15:11 +0200 |
commit | 073a3705f23ca46092caec310d44394dd8d38b3b (patch) | |
tree | 657e6d2b85938b643039cd82fb155d3266d2a6ec /lib/param | |
parent | d3f061b687ca2a22956e1132a395239928f9c9f8 (diff) | |
download | samba-073a3705f23ca46092caec310d44394dd8d38b3b.tar.gz samba-073a3705f23ca46092caec310d44394dd8d38b3b.tar.bz2 samba-073a3705f23ca46092caec310d44394dd8d38b3b.zip |
lib/param: Add .flags to wins parameters to match s3
This reduces the difference in the parameter tables.
Andrew Bartlett
Diffstat (limited to 'lib/param')
-rw-r--r-- | lib/param/loadparm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index c2781ec61a..8120ae40f0 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -991,7 +991,8 @@ static struct parm_struct parm_table[] = { .p_class = P_GLOBAL, .offset = GLOBAL_VAR(szWINSservers), .special = NULL, - .enum_list = NULL + .enum_list = NULL, + .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD, }, { .label = "wins support", @@ -999,7 +1000,8 @@ static struct parm_struct parm_table[] = { .p_class = P_GLOBAL, .offset = GLOBAL_VAR(bWINSsupport), .special = NULL, - .enum_list = NULL + .enum_list = NULL, + .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD, }, { .label = "wins hook", |