From fe23345f04cddc6786a601585ac93e89eb9c9952 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Fri, 25 Nov 2011 16:42:46 -0800 Subject: [PATCH] Flush args instruction. --- src/daemon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/daemon.c b/src/daemon.c index 642ac6d..bc352f3 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -102,7 +102,8 @@ void* start_client_thread(void* data) { } /* Send args response */ - if (guac_protocol_send_args(socket, plugin->args)) { + if (guac_protocol_send_args(socket, plugin->args) + || guac_socket_flush(socket)) { if (guac_client_plugin_close(plugin)) { /* TODO: LOG ERROR */ -- 1.7.10.4