Client: eliminate client_puts(), use Client::Write() instead

This commit is contained in:
Max Kellermann
2017-02-03 20:46:53 +01:00
parent 3102e05da4
commit 16b260e371
5 changed files with 3 additions and 14 deletions

View File

@@ -44,7 +44,7 @@ client_process_command_list(Client &client, bool list_ok,
if (ret != CommandResult::OK || client.IsExpired())
break;
else if (list_ok)
client_puts(client, "list_OK\n");
client.Write("list_OK\n");
}
return ret;