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

@@ -24,5 +24,5 @@
void
command_success(Client &client)
{
client_puts(client, "OK\n");
client.Write("OK\n");
}