From 073a3705f23ca46092caec310d44394dd8d38b3b Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 28 May 2012 14:53:26 +1000 Subject: lib/param: Add .flags to wins parameters to match s3 This reduces the difference in the parameter tables. Andrew Bartlett --- lib/param/loadparm.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib') 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", -- cgit