diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-07-26 16:00:40 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-07-26 12:23:20 +0200 |
commit | 3f1dfdd8b4f7ccfb16d30b46f917f22523d4bec6 (patch) | |
tree | 51b25f2498204cbd186e9705feaa8e00ae719173 /lib/param | |
parent | ebc2cc7f8a596f1ca63f263c33537ebe7726e20d (diff) | |
download | samba-3f1dfdd8b4f7ccfb16d30b46f917f22523d4bec6.tar.gz samba-3f1dfdd8b4f7ccfb16d30b46f917f22523d4bec6.tar.bz2 samba-3f1dfdd8b4f7ccfb16d30b46f917f22523d4bec6.zip |
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 <tridge@samba.org>
Andrew Bartlett
Diffstat (limited to 'lib/param')
-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", |