summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-04-12 17:47:08 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-04-16 14:35:34 +1000
commitdb44f35fc380e68cf3aa8d10c0851f7ce2d13ad1 (patch)
tree10c8d006e70d5bba30ca02ce5c1de727a92cc42f /lib
parent2bc8999266629c73be22633c6188cc439a0ea2f4 (diff)
downloadsamba-db44f35fc380e68cf3aa8d10c0851f7ce2d13ad1.tar.gz
param: harmonise wins parameters
Diffstat (limited to 'lib')
-rw-r--r--lib/param/loadparm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c
index 08d46b27654..46bae44c546 100644
--- a/lib/param/loadparm.c
+++ b/lib/param/loadparm.c
@@ -978,26 +978,26 @@ static struct parm_struct parm_table[] = {
},
{
- .label = "wins server",
- .type = P_LIST,
+ .label = "dns proxy",
+ .type = P_BOOL,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(szWINSservers),
+ .offset = GLOBAL_VAR(bWINSdnsProxy),
.special = NULL,
.enum_list = NULL
},
{
- .label = "wins support",
- .type = P_BOOL,
+ .label = "wins server",
+ .type = P_LIST,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(bWINSsupport),
+ .offset = GLOBAL_VAR(szWINSservers),
.special = NULL,
.enum_list = NULL
},
{
- .label = "dns proxy",
+ .label = "wins support",
.type = P_BOOL,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(bWINSdnsProxy),
+ .offset = GLOBAL_VAR(bWINSsupport),
.special = NULL,
.enum_list = NULL
},