From 3fee1a854a91f13d3c4ca16f9311f0cb0792ba89 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 13 Mar 2012 15:53:08 -0700 Subject: [PATCH] Use new form of guac_client_plugin_get_client(). --- src/daemon.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/daemon.c b/src/daemon.c index a0ba7f8..0f692d2 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -137,7 +137,9 @@ void guacd_handle_connection(int fd) { /* Load and init client */ client = guac_client_plugin_get_client(plugin, socket, - connect->argc, connect->argv); + connect->argc, connect->argv, + guacd_log_info, guacd_log_error); + guac_instruction_free(connect); if (client == NULL) { @@ -151,10 +153,6 @@ void guacd_handle_connection(int fd) { return; } - /* Set up logging in client */ - client->log_info_handler = guacd_log_info; - client->log_error_handler = guacd_log_error; - /* Start client threads */ syslog(LOG_INFO, "Starting client"); if (guacd_client_start(client)) -- 1.7.10.4