From 27ba5e3122be2fea9652265b5fd6de5549fd889b Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 24 Dec 2011 22:51:31 -0800 Subject: [PATCH] Migrated to namespaced RUNNING state. --- guacd/src/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guacd/src/client.c b/guacd/src/client.c index bfdd6000..2645980b 100644 --- a/guacd/src/client.c +++ b/guacd/src/client.c @@ -70,7 +70,7 @@ void* __guacd_client_output_thread(void* data) { guac_timestamp last_ping_timestamp = guac_protocol_get_timestamp(); /* Guacamole client output loop */ - while (client->state == RUNNING) { + while (client->state == GUAC_CLIENT_RUNNING) { /* Occasionally ping client with repeat of last sync */ guac_timestamp timestamp = guac_protocol_get_timestamp(); @@ -154,7 +154,7 @@ void* __guacd_client_input_thread(void* data) { guac_socket* socket = client->socket; /* Guacamole client input loop */ - while (client->state == RUNNING) { + while (client->state == GUAC_CLIENT_RUNNING) { /* Read instruction */ guac_instruction* instruction =