diff options
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r-- | lib/param/param_table.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c index 3b4736aa12..bd94553f8b 100644 --- a/lib/param/param_table.c +++ b/lib/param/param_table.c @@ -1322,7 +1322,7 @@ static struct parm_struct parm_table[] = { .label = "server max protocol", .type = P_ENUM, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(srv_maxprotocol), + .offset = GLOBAL_VAR(server_max_protocol), .special = NULL, .enum_list = enum_protocol, .flags = FLAG_ADVANCED, @@ -1331,7 +1331,7 @@ static struct parm_struct parm_table[] = { .label = "max protocol", .type = P_ENUM, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(srv_maxprotocol), + .offset = GLOBAL_VAR(server_max_protocol), .special = NULL, .enum_list = enum_protocol, .flags = FLAG_ADVANCED, @@ -1340,7 +1340,7 @@ static struct parm_struct parm_table[] = { .label = "protocol", .type = P_ENUM, .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(srv_maxprotocol), + .offset = GLOBAL_VAR(server_max_protocol), .special = NULL, .enum_list = enum_protocol, .flags = FLAG_ADVANCED, |