From 27fb14bfbe9d49bacd80fc033132c254267aeb34 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 28 May 2012 15:00:12 +1000 Subject: s3-loadparm: Swap synonyms of max/min protocol to server max/min protocol This matches the lib/param code, as is a seperate parameter for the client there. Andrew Bartlett Autobuild-User: Andrew Bartlett Autobuild-Date: Wed May 30 06:04:41 CEST 2012 on sn-devel-104 --- source3/param/loadparm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 3c1a4effe4..11ff646cb6 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1560,7 +1560,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "max protocol", + .label = "server max protocol", .type = P_ENUM, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(srv_maxprotocol), @@ -1569,7 +1569,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "server max protocol", + .label = "max protocol", .type = P_ENUM, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(srv_maxprotocol), @@ -1587,7 +1587,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "min protocol", + .label = "server min protocol", .type = P_ENUM, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(srv_minprotocol), @@ -1596,7 +1596,7 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "server min protocol", + .label = "min protocol", .type = P_ENUM, .p_class = P_GLOBAL, .offset = GLOBAL_VAR(srv_minprotocol), -- cgit