From 95851b25e75534df7feb758f9f6ad1b04317d24a Mon Sep 17 00:00:00 2001 From: kubistika Date: Tue, 16 Jul 2019 16:14:06 +0300 Subject: [PATCH] server: proxy: set nla fallback flag flag only if NLASecurity is enabled --- server/proxy/pf_client.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/proxy/pf_client.c b/server/proxy/pf_client.c index ea945e9..7ae5842 100644 --- a/server/proxy/pf_client.c +++ b/server/proxy/pf_client.c @@ -234,7 +234,12 @@ static DWORD WINAPI pf_client_thread_proc(LPVOID arg) DWORD status; HANDLE handles[64]; - pc->during_connect_process = TRUE; + /* Only set the `during_connect_process` flag if NlaSecurity is enabled. + * If NLASecurity isn't enabled, the connection should be closed right after the first failure. + */ + if (instance->settings->NlaSecurity) + pc->during_connect_process = TRUE; + if (!freerdp_connect(instance)) { if (instance->settings->NlaSecurity) -- 2.7.4