diff options
author | Max Kellermann <max@duempel.org> | 2013-01-15 10:11:08 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-15 10:59:28 +0100 |
commit | 1e2018ce831654f5bf649c5ae4d2e9b003c5a52e (patch) | |
tree | 3b9a26135f1a2598f0dcf77f72ea2beb7cb59162 /src/ClientGlobal.cxx | |
parent | 3fcf17cb79c1bbec631c1a440eb05953ece87b0d (diff) | |
download | mpd-1e2018ce831654f5bf649c5ae4d2e9b003c5a52e.tar.gz mpd-1e2018ce831654f5bf649c5ae4d2e9b003c5a52e.tar.xz mpd-1e2018ce831654f5bf649c5ae4d2e9b003c5a52e.zip |
Client: move connection functions into the class
Diffstat (limited to 'src/ClientGlobal.cxx')
-rw-r--r-- | src/ClientGlobal.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ClientGlobal.cxx b/src/ClientGlobal.cxx index c3940f0a8..1aa82b435 100644 --- a/src/ClientGlobal.cxx +++ b/src/ClientGlobal.cxx @@ -58,7 +58,7 @@ static void client_close_all(void) while (!client_list_is_empty()) { Client *client = client_list_get_first(); - client_close(client); + client->Close(); } assert(client_list_is_empty()); |