Now use maxscale_shutdown()

shutdown_server() has been renamed to maxscale_shutdown().
This commit is contained in:
Johan Wikman
2016-11-16 15:28:44 +02:00
parent 5d5802a5a0
commit 27247bea4e

View File

@ -527,8 +527,6 @@ exec_clear(DCB *dcb, MAXINFO_TREE *tree)
MXS_ERROR("%s", errmsg);
}
extern void shutdown_server();
/**
* MaxScale shutdown
* @param dcb Client DCB
@ -536,7 +534,7 @@ extern void shutdown_server();
*/
void exec_shutdown_maxscale(DCB *dcb, MAXINFO_TREE *tree)
{
shutdown_server();
maxscale_shutdown();
maxinfo_send_ok(dcb);
}