From 91be81861b3cddaea62238d3444f378fcf2a0211 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. --- src/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.c b/src/client.c index bfdd600..2645980 100644 --- a/src/client.c +++ b/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 = -- 1.7.10.4