From db44f35fc380e68cf3aa8d10c0851f7ce2d13ad1 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 12 Apr 2012 17:47:08 +1000 Subject: param: harmonise wins parameters --- lib/param/loadparm.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/param') diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 08d46b2765..46bae44c54 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 }, -- cgit