From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id C74373856DE0; Thu, 28 Apr 2022 13:22:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C74373856DE0 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jon TURNEY To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/cygwin-3_3-branch] Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/cygwin-3_3-branch X-Git-Oldrev: 251c823aba35d3c09e9f8d8942d0b3cea90bf216 X-Git-Newrev: 05827d2df8312e19d564b06af9f8f1a97cf8c1b9 Message-Id: <20220428132232.C74373856DE0@sourceware.org> Date: Thu, 28 Apr 2022 13:22:32 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2022 13:22:32 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D05827d2df83= 12e19d564b06af9f8f1a97cf8c1b9 commit 05827d2df8312e19d564b06af9f8f1a97cf8c1b9 Author: Jon Turney Date: Tue Apr 12 11:48:54 2022 +0100 Cygwin: Fix typo KERB_S4U_LOGON_FLAG_IDENTITY -> IDENTIFY =20 (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; =20 /* Missing in Mingw-w64 */ -#define KERB_S4U_LOGON_FLAG_IDENTITY 0x08 +#define KERB_S4U_LOGON_FLAG_IDENTIFY 0x08 =20 #endif =20 @@ -1611,7 +1611,7 @@ s4uauth (bool logon, PCWSTR domain, PCWSTR user, NTST= ATUS &ret_status) RtlSecureZeroMemory (authinf, authinf_size); s4u_logon =3D (KERB_S4U_LOGON *) authinf; s4u_logon->MessageType =3D KerbS4ULogon; - s4u_logon->Flags =3D logon ? 0 : KERB_S4U_LOGON_FLAG_IDENTITY; + s4u_logon->Flags =3D logon ? 0 : KERB_S4U_LOGON_FLAG_IDENTIFY; /* Append user to login info */ RtlInitEmptyUnicodeString (&s4u_logon->ClientUpn, (PWCHAR) (s4u_logon + 1),