[newlib-cygwin/cygwin-3_3-branch] Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY
Jon TURNEY
jturney@sourceware.org
Thu Apr 28 13:22:32 GMT 2022
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=05827d2df8312e19d564b06af9f8f1a97cf8c1b9
commit 05827d2df8312e19d564b06af9f8f1a97cf8c1b9
Author: Jon Turney <jon.turney@dronecode.org.uk>
Date: Tue Apr 12 11:48:54 2022 +0100
Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY
(cherry picked from commit 01c734b0d7c1ce0f848f7efc091856c58a6ef55e)
Diff:
---
winsup/cygwin/sec_auth.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/winsup/cygwin/sec_auth.cc b/winsup/cygwin/sec_auth.cc
index 9559096ee..e44b70b02 100644
--- a/winsup/cygwin/sec_auth.cc
+++ b/winsup/cygwin/sec_auth.cc
@@ -1490,7 +1490,7 @@ typedef struct _MSV1_0_S4U_LOGON
} MSV1_0_S4U_LOGON, *PMSV1_0_S4U_LOGON;
/* Missing in Mingw-w64 */
-#define KERB_S4U_LOGON_FLAG_IDENTITY 0x08
+#define KERB_S4U_LOGON_FLAG_IDENTIFY 0x08
#endif
@@ -1611,7 +1611,7 @@ s4uauth (bool logon, PCWSTR domain, PCWSTR user, NTSTATUS &ret_status)
RtlSecureZeroMemory (authinf, authinf_size);
s4u_logon = (KERB_S4U_LOGON *) authinf;
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 */
RtlInitEmptyUnicodeString (&s4u_logon->ClientUpn,
(PWCHAR) (s4u_logon + 1),
More information about the Cygwin-cvs
mailing list