server: proxy: set nla fallback flag flag only if NLASecurity is enabled

This commit is contained in:
kubistika
2019-07-16 16:14:06 +03:00
parent e9e1c5d748
commit 95851b25e7

View File

@@ -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)