From 007cb2c66cfab8ef5c09633f08e1c51e2c028956 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 30 Jan 2014 00:30:29 -0800 Subject: [PATCH] Fix args. --- src/protocols/rdp/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/protocols/rdp/client.c b/src/protocols/rdp/client.c index 7cfcf9d0..707e9473 100644 --- a/src/protocols/rdp/client.c +++ b/src/protocols/rdp/client.c @@ -197,8 +197,8 @@ BOOL rdp_freerdp_pre_connect(freerdp* instance) { plugin_data[0].size = sizeof(RDP_PLUGIN_DATA); plugin_data[0].data[0] = guac_client_data->settings.remote_app_name; - plugin_data[0].data[1] = guac_client_data->settings.remote_app_command; - plugin_data[0].data[2] = NULL; + plugin_data[0].data[1] = NULL; + plugin_data[0].data[2] = guac_client_data->settings.remote_app_command; plugin_data[0].data[3] = NULL; plugin_data[1].size = 0;