From 3f1dfdd8b4f7ccfb16d30b46f917f22523d4bec6 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 26 Jul 2012 16:00:40 +1000 Subject: lib/param: Merge "WINS 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 Andrew Bartlett --- lib/param/loadparm.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'lib') 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", -- cgit