From a152dec687b124dc3d35deffa54bbc693a1a0949 Mon Sep 17 00:00:00 2001 From: David Fort Date: Fri, 8 Apr 2022 11:24:33 +0200 Subject: [PATCH] proxy: correctly use the RemoteApp flag The flag was forcing the remoteApp usage when set, while all the other equivalent flags just enable the feature. This patch fixes that, so now setting RemoteApp = TRUE just enables the front client to do remoteApps. --- server/proxy/pf_client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/server/proxy/pf_client.c b/server/proxy/pf_client.c index d53d1ef4c..cef443ce5 100644 --- a/server/proxy/pf_client.c +++ b/server/proxy/pf_client.c @@ -270,7 +270,6 @@ static BOOL pf_client_pre_connect(freerdp* instance) config->DeviceRedirection) || !freerdp_settings_set_bool(settings, FreeRDP_SupportDisplayControl, config->DisplayControl) || - !freerdp_settings_set_bool(settings, FreeRDP_RemoteApplicationMode, config->RemoteApp) || !freerdp_settings_set_bool(settings, FreeRDP_MultiTouchInput, config->Multitouch)) return FALSE;