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/ClientProcess.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 '')
-rw-r--r-- | src/ClientProcess.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ClientProcess.cxx b/src/ClientProcess.cxx index e1e8395e7..bcd20d1b7 100644 --- a/src/ClientProcess.cxx +++ b/src/ClientProcess.cxx @@ -61,7 +61,6 @@ client_process_line(Client *client, char *line) /* send empty idle response and leave idle mode */ client->idle_waiting = false; command_success(client); - client_write_output(client); } /* do nothing if the client wasn't idling: the client @@ -97,7 +96,6 @@ client_process_line(Client *client, char *line) if (ret == COMMAND_RETURN_OK) command_success(client); - client_write_output(client); client->cmd_list.Reset(); } else { if (!client->cmd_list.Add(line)) { @@ -130,8 +128,6 @@ client_process_line(Client *client, char *line) if (ret == COMMAND_RETURN_OK) command_success(client); - - client_write_output(client); } } |