diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/param/loadparm.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index b3f73e661a..b303cdf82c 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -909,13 +909,25 @@ static struct parm_struct parm_table[] = { .enum_list = NULL }, + {N_("WINS Options"), P_SEP, P_SEPARATOR}, + { .label = "dns proxy", .type = P_BOOL, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(bWINSdnsProxy), .special = NULL, - .enum_list = NULL + .enum_list = NULL, + .flags = FLAG_ADVANCED, + }, + { + .label = "wins proxy", + .type = P_BOOL, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(bWINSproxy), + .special = NULL, + .enum_list = NULL, + .flags = FLAG_ADVANCED, }, { .label = "wins server", |