From 1fb63aea5f96794e33b2a9a1df671d16f18108db Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Thu, 13 Jul 2017 11:42:50 +0200 Subject: [PATCH] Fixed wrong type for AuthenticationLevel. Replaced type BOOL with INT32 as according to MSDN they are typedefed. This keeps the ABI compatible and fixes the wrong data type. --- include/freerdp/settings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/freerdp/settings.h b/include/freerdp/settings.h index 6030a5c81..29258518d 100644 --- a/include/freerdp/settings.h +++ b/include/freerdp/settings.h @@ -1011,7 +1011,7 @@ struct rdp_settings ALIGN64 BOOL RestrictedAdminModeRequired; /* 1097 */ ALIGN64 char* AuthenticationServiceClass; /* 1098 */ ALIGN64 BOOL DisableCredentialsDelegation; /* 1099 */ - ALIGN64 BOOL AuthenticationLevel; /* 1100 */ + ALIGN64 UINT32 AuthenticationLevel; /* 1100 */ ALIGN64 char* AllowedTlsCiphers; /* 1101 */ ALIGN64 BOOL VmConnectMode; /* 1102 */ ALIGN64 char* NtlmSamFile; /* 1103 */