The branch, v4-21-test has been updated
via 0c3379c5bd8 examples:winexe: Initialize Trustee.ptstrName at the
right time
from 193dc02471b libcli/auth: make use of
netlogon_creds_cli_check_transport() in more places
https://git.samba.org/?p=samba.git;a=shortlog;h=v4-21-test
- Log -----------------------------------------------------------------
commit 0c3379c5bd80dba480d33757a29a5ae249375914
Author: Pavel Filipenský <[email protected]>
Date: Wed Nov 13 09:49:47 2024 +0100
examples:winexe: Initialize Trustee.ptstrName at the right time
This is a regression of a39cb60 examples:winexe: Fully initialize
EXPLICIT_ACCESS
BUG: https://bugzilla.samba.org/show_bug.cgi?id=15752
Signed-off-by: Pavel Filipenský <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>
Autobuild-User(master): Pavel Filipensky <[email protected]>
Autobuild-Date(master): Wed Nov 13 15:47:40 UTC 2024 on atb-devel-224
(cherry picked from commit 50f3273e8283c9dabeca3c899b90ad831657b12a)
Autobuild-User(v4-21-test): Jule Anger <[email protected]>
Autobuild-Date(v4-21-test): Thu Nov 14 14:06:52 UTC 2024 on atb-devel-224
-----------------------------------------------------------------------
Summary of changes:
examples/winexe/winexesvc.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Changeset truncated at 500 lines:
diff --git a/examples/winexe/winexesvc.c b/examples/winexe/winexesvc.c
index f993c9a9c69..ca270a80444 100644
--- a/examples/winexe/winexesvc.c
+++ b/examples/winexe/winexesvc.c
@@ -68,7 +68,6 @@ static int CreatePipesSA()
.Trustee = {
.TrusteeForm = TRUSTEE_IS_SID,
.TrusteeType = TRUSTEE_IS_GROUP,
- .ptstrName = (LPTSTR)pAdminSID,
},
};
SID_IDENTIFIER_AUTHORITY SIDAuthNT = {SECURITY_NT_AUTHORITY};
@@ -86,6 +85,8 @@ static int CreatePipesSA()
return 0;
}
+ ea.Trustee.ptstrName = (LPTSTR)pAdminSID;
+
/* Create a new ACL that contains the new ACEs */
dwRes = SetEntriesInAcl(1, &ea, NULL, &pACL);
if (ERROR_SUCCESS != dwRes) {
--
Samba Shared Repository