diff options
Diffstat (limited to 'lib/param')
-rw-r--r-- | lib/param/loadparm.c | 16 |
1 files changed, 8 insertions, 8 deletions
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 }, |