From cef305e598312acff1df07ca66bf3f54d695040c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Sat, 11 Aug 2018 14:05:12 +0300 Subject: [PATCH] MXS-1929: Fix version_string The new default value was not copied to the old value. --- server/core/service.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/server/core/service.cc b/server/core/service.cc index e50e9ba72..acce78885 100644 --- a/server/core/service.cc +++ b/server/core/service.cc @@ -192,6 +192,7 @@ Service::Service(const std::string& service_name, const std::string& router_name snprintf(user, sizeof(user), "%s", m_user.c_str()); snprintf(password, sizeof(password), "%s", m_password.c_str()); snprintf(weightby, sizeof(weightby), "%s", m_weightby.c_str()); + snprintf(version_string, sizeof(version_string), "%s", m_version_string.c_str()); max_retry_interval = config_get_integer(params, CN_MAX_RETRY_INTERVAL); users_from_all = config_get_bool(params, CN_AUTH_ALL_SERVERS);