mirror of https://github.com/FreeRDP/FreeRDP
[core,settings] enable SupportDynamicTimeZone
FreeRDP based clients & servers support it. If a remote does not support it it is not send/received.
This commit is contained in:
parent
607606c6ee
commit
0810e7d944
|
@ -799,10 +799,10 @@ rdpSettings* freerdp_settings_new(DWORD flags)
|
|||
const BOOL enable = freerdp_settings_get_bool(settings, FreeRDP_ServerMode);
|
||||
|
||||
{
|
||||
const FreeRDP_Settings_Keys_Bool keys[] = {
|
||||
FreeRDP_SupportDynamicTimeZone, FreeRDP_SupportGraphicsPipeline,
|
||||
FreeRDP_SupportStatusInfoPdu, FreeRDP_SupportErrorInfoPdu, FreeRDP_SupportAsymetricKeys
|
||||
};
|
||||
const FreeRDP_Settings_Keys_Bool keys[] = { FreeRDP_SupportGraphicsPipeline,
|
||||
FreeRDP_SupportStatusInfoPdu,
|
||||
FreeRDP_SupportErrorInfoPdu,
|
||||
FreeRDP_SupportAsymetricKeys };
|
||||
|
||||
for (size_t x = 0; x < ARRAYSIZE(keys); x++)
|
||||
{
|
||||
|
@ -810,6 +810,9 @@ rdpSettings* freerdp_settings_new(DWORD flags)
|
|||
goto out_fail;
|
||||
}
|
||||
}
|
||||
|
||||
if (!freerdp_settings_set_bool(settings, FreeRDP_SupportDynamicTimeZone, TRUE))
|
||||
goto out_fail;
|
||||
if (!freerdp_settings_set_bool(settings, FreeRDP_SupportSkipChannelJoin, TRUE))
|
||||
goto out_fail;
|
||||
|
||||
|
|
Loading…
Reference in New Issue