1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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
This commit is contained in:
Andrew Bartlett 2012-05-28 15:00:12 +10:00
parent 1d3e5eda03
commit 27fb14bfbe
3 changed files with 11 additions and 8 deletions

View File

@ -1,4 +1,4 @@
<samba:parameter name="max protocol"
<samba:parameter name="server max protocol"
context="G"
type="enum"
developer="1"
@ -59,8 +59,8 @@
the appropriate protocol.</para>
</description>
<related>min protocol</related>
<synonym>protocol</synonym>
<related>server min protocol</related>
<synonym>max protocol</synonym>
<value type="default">SMB2</value>
<value type="example">LANMAN1</value>

View File

@ -1,4 +1,4 @@
<samba:parameter name="min protocol"
<samba:parameter name="server min protocol"
context="G"
type="string"
developer="1"
@ -17,6 +17,9 @@
to change this parameter.</para>
</description>
<related>server min protocol</related>
<synonym>min protocol</synonym>
<value type="default">CORE</value>
<value type="example">NT1</value>
</samba:parameter>

View File

@ -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),