diff options
-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", |