summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-05-28 15:00:12 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-05-30 06:04:41 +0200
commit27fb14bfbe9d49bacd80fc033132c254267aeb34 (patch)
tree12ceaac0734dddcf4ed57246dcb0e3d0095bff34 /source3/param
parent1d3e5eda038deebe7e3d2d122c8d9963b548edfb (diff)
downloadsamba-27fb14bfbe9d49bacd80fc033132c254267aeb34.tar.gz
samba-27fb14bfbe9d49bacd80fc033132c254267aeb34.tar.bz2
samba-27fb14bfbe9d49bacd80fc033132c254267aeb34.zip
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 <abartlet@samba.org> Autobuild-Date: Wed May 30 06:04:41 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c8
1 files changed, 4 insertions, 4 deletions
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),