diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:09 +1300 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:15 -0800 |
commit | fc111c7875e35c846dbe52f7d3dbce75cfc74336 (patch) | |
tree | 9df856823241dee248eff616fd6bbf3b351bc0e3 /lib/param/param_table.c | |
parent | 64dc4b59f880b190a347f33dbcb40e0d65a8e009 (diff) | |
download | samba-fc111c7875e35c846dbe52f7d3dbce75cfc74336.tar.gz samba-fc111c7875e35c846dbe52f7d3dbce75cfc74336.tar.xz samba-fc111c7875e35c846dbe52f7d3dbce75cfc74336.zip |
param: rename lp function and variable from "srv_minprotocol" to "server_min_protocol"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index bd94553f8b..1ae0a2c754 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1349,7 +1349,7 @@ static struct parm_struct parm_table[] = { .label = "server min protocol", .type = P_ENUM, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(srv_minprotocol), + .offset = GLOBAL_VAR(server_min_protocol), .special = NULL, .enum_list = enum_protocol, .flags = FLAG_ADVANCED, @@ -1358,7 +1358,7 @@ static struct parm_struct parm_table[] = { .label = "min protocol", .type = P_ENUM, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(srv_minprotocol), + .offset = GLOBAL_VAR(server_min_protocol), .special = NULL, .enum_list = enum_protocol, .flags = FLAG_ADVANCED, |