diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-02-27 14:24:30 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-02-27 07:36:05 +0100 |
commit | c318c94170d58aeaa34f00e06fbf960816f7d0d9 (patch) | |
tree | a81232d7fa943db0c94f8d0b13f529c7eebd1801 /lib/param | |
parent | d21f7783f6062118edf2c7b8dab79ebc5459317a (diff) | |
download | samba-c318c94170d58aeaa34f00e06fbf960816f7d0d9.tar.gz |
s3-param: Align lp_{max,min}protocol with lib/param names
This adds an alisas to ensure that both our loadparm systems know all
the names.
I would like to move to the 'server ..' name as canonical, and this
will be raised on the list.
Andrew Bartlett
Diffstat (limited to 'lib/param')
-rw-r--r-- | lib/param/loadparm.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 44a33295d5a..bb59a79d0cc 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -606,6 +606,22 @@ static struct parm_struct parm_table[] = { .enum_list = enum_protocol }, { + .label = "max protocol", + .type = P_ENUM, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(srv_maxprotocol), + .special = NULL, + .enum_list = enum_protocol + }, + { + .label = "protocol", + .type = P_ENUM, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(srv_maxprotocol), + .special = NULL, + .enum_list = enum_protocol + }, + { .label = "server min protocol", .type = P_ENUM, .p_class = P_GLOBAL, @@ -614,6 +630,14 @@ static struct parm_struct parm_table[] = { .enum_list = enum_protocol }, { + .label = "min protocol", + .type = P_ENUM, + .p_class = P_GLOBAL, + .offset = GLOBAL_VAR(srv_minprotocol), + .special = NULL, + .enum_list = enum_protocol + }, + { .label = "client max protocol", .type = P_ENUM, .p_class = P_GLOBAL, |