Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY
This commit is contained in:
parent
0b44b06b05
commit
01c734b0d7
|
@ -1247,7 +1247,7 @@ typedef struct _MSV1_0_S4U_LOGON
|
||||||
} MSV1_0_S4U_LOGON, *PMSV1_0_S4U_LOGON;
|
} MSV1_0_S4U_LOGON, *PMSV1_0_S4U_LOGON;
|
||||||
|
|
||||||
/* Missing in Mingw-w64 */
|
/* Missing in Mingw-w64 */
|
||||||
#define KERB_S4U_LOGON_FLAG_IDENTITY 0x08
|
#define KERB_S4U_LOGON_FLAG_IDENTIFY 0x08
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1368,7 +1368,7 @@ s4uauth (bool logon, PCWSTR domain, PCWSTR user, NTSTATUS &ret_status)
|
||||||
RtlSecureZeroMemory (authinf, authinf_size);
|
RtlSecureZeroMemory (authinf, authinf_size);
|
||||||
s4u_logon = (KERB_S4U_LOGON *) authinf;
|
s4u_logon = (KERB_S4U_LOGON *) authinf;
|
||||||
s4u_logon->MessageType = KerbS4ULogon;
|
s4u_logon->MessageType = KerbS4ULogon;
|
||||||
s4u_logon->Flags = logon ? 0 : KERB_S4U_LOGON_FLAG_IDENTITY;
|
s4u_logon->Flags = logon ? 0 : KERB_S4U_LOGON_FLAG_IDENTIFY;
|
||||||
/* Append user to login info */
|
/* Append user to login info */
|
||||||
RtlInitEmptyUnicodeString (&s4u_logon->ClientUpn,
|
RtlInitEmptyUnicodeString (&s4u_logon->ClientUpn,
|
||||||
(PWCHAR) (s4u_logon + 1),
|
(PWCHAR) (s4u_logon + 1),
|
||||||
|
|
Loading…
Reference in New Issue