aboutsummaryrefslogtreecommitdiff
path: root/src/ClientRead.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 17:27:26 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 17:36:28 +0100
commit7a982169c9dc3a673e922e7f3b9b73368cef0aae (patch)
tree7b9b28287d7ae934c0e75bd7f3b5f317ad7d2cac /src/ClientRead.cxx
parentf2510d60fad1c5811fba3d253ef1c8dabb712304 (diff)
Client: rename the struct client to class Client
Diffstat (limited to 'src/ClientRead.cxx')
-rw-r--r--src/ClientRead.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ClientRead.cxx b/src/ClientRead.cxx
index 830820de..aab4cae3 100644
--- a/src/ClientRead.cxx
+++ b/src/ClientRead.cxx
@@ -28,7 +28,7 @@ extern "C" {
#include <string.h>
static char *
-client_read_line(struct client *client)
+client_read_line(Client *client)
{
size_t length;
const char *p = (const char *)fifo_buffer_read(client->input, &length);
@@ -46,7 +46,7 @@ client_read_line(struct client *client)
}
static enum command_return
-client_input_received(struct client *client, size_t bytesRead)
+client_input_received(Client *client, size_t bytesRead)
{
char *line;
@@ -69,7 +69,7 @@ client_input_received(struct client *client, size_t bytesRead)
}
enum command_return
-client_read(struct client *client)
+client_read(Client *client)
{
GError *error = NULL;
GIOStatus status;