diff options
author | Max Kellermann <max@duempel.org> | 2013-01-14 23:42:06 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-15 12:15:33 +0100 |
commit | 39439b80f5d1574e67f337a047869cf067c396b7 (patch) | |
tree | 5e28e61d4895da86189d14cde9f1e238c18079a8 /src/ClientIdle.cxx | |
parent | 396480cf94fbeda581acb6a78c42c7ec610d04a4 (diff) | |
download | mpd-39439b80f5d1574e67f337a047869cf067c396b7.tar.gz mpd-39439b80f5d1574e67f337a047869cf067c396b7.tar.xz mpd-39439b80f5d1574e67f337a047869cf067c396b7.zip |
Client: rebase on the new BufferedSocket class
Diffstat (limited to 'src/ClientIdle.cxx')
-rw-r--r-- | src/ClientIdle.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ClientIdle.cxx b/src/ClientIdle.cxx index 98778f52c..f9818b278 100644 --- a/src/ClientIdle.cxx +++ b/src/ClientIdle.cxx @@ -60,10 +60,8 @@ client_idle_add(Client *client, unsigned flags) client->idle_flags |= flags; if (client->idle_waiting - && (client->idle_flags & client->idle_subscriptions)) { + && (client->idle_flags & client->idle_subscriptions)) client_idle_notify(client); - client_write_output(client); - } } static void |