MXS-2304 Use get_bool() instead of config_get_bool()
This commit is contained in:
@ -251,7 +251,7 @@ Server* Server::server_alloc(const char* name, MXS_CONFIG_PARAMETER* params)
|
||||
server->extra_port = params->get_integer(CN_EXTRA_PORT);
|
||||
server->m_settings.persistpoolmax = params->get_integer(CN_PERSISTPOOLMAX);
|
||||
server->m_settings.persistmaxtime = params->get_integer(CN_PERSISTMAXTIME);
|
||||
server->proxy_protocol = config_get_bool(params, CN_PROXY_PROTOCOL);
|
||||
server->proxy_protocol = params->get_bool(CN_PROXY_PROTOCOL);
|
||||
server->is_active = true;
|
||||
server->m_auth_instance = auth_instance;
|
||||
server->server_ssl = ssl;
|
||||
|
Reference in New Issue
Block a user