diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c768cd3..bbeadcb6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ EXECUTE_PROCESS(COMMAND git describe --tags MESSAGE(STATUS "building from ${GIT_REVISION}") SET(CPACK_PACKAGE_VERSION_MAJOR "2") SET(CPACK_PACKAGE_VERSION_MINOR "2") -SET(CPACK_PACKAGE_VERSION_PATCH "2") +SET(CPACK_PACKAGE_VERSION_PATCH "3") SET(CPACK_PACKAGE_VENDOR "MySQL") SET(PACKAGE_NAME cetus) diff --git a/plugins/admin/admin-commands.c b/plugins/admin/admin-commands.c index 89ce7759..10294eaf 100644 --- a/plugins/admin/admin-commands.c +++ b/plugins/admin/admin-commands.c @@ -1523,7 +1523,7 @@ void admin_get_config(network_mysqld_con* con, char* p) APPEND_ROW_3_COL(rows, g_strdup(buffer), "pool.max-resp-len", buf3); APPEND_ROW_3_COL(rows, g_strdup(buffer), "pool.master-preferred", buf4); } else { - APPEND_ROW_3_COL(rows, g_strdup(buffer), (char*)p, (char*)p); + APPEND_ROW_3_COL(rows, g_strdup(buffer), (char*)p, "please check config file"); } network_mysqld_con_send_resultset(con->client, fields, rows);