diff options
Diffstat (limited to 'Source/cmServer.cxx')
-rw-r--r-- | Source/cmServer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmServer.cxx b/Source/cmServer.cxx index 61ebba3..1d5f3f6 100644 --- a/Source/cmServer.cxx +++ b/Source/cmServer.cxx @@ -28,7 +28,7 @@ static void on_walk_to_shutdown(uv_handle_t* handle, void* arg) { (void)arg; if (!uv_is_closing(handle)) { - uv_close(handle, &cmConnection::on_close); + uv_close(handle, &cmEventBasedConnection::on_close); } } @@ -478,7 +478,7 @@ void cmServerBase::StartShutDown() } for (auto& connection : Connections) { - connection->OnServerShuttingDown(); + connection->OnConnectionShuttingDown(); } Connections.clear(); |