[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Wed Aug 15 11:58:50 MDT 2012


The branch, v3-6-test has been updated
       via  5c0a169 s3-auth Use correct RID for domain guests primary group
      from  68aedaf Revert "s3:auth make sure the primary group sid is usable"

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit 5c0a169275ccf046190a0d08d93fc37e6b9bcf75
Author: Andrew Bartlett <abartlet at samba.org>
Date:   Sun Jul 15 14:38:18 2012 +1000

    s3-auth Use correct RID for domain guests primary group
    
    This was incorrect in commit 9dd7e7fc2d6d1aa7f3c3b741ac134e087ce808fd
    as the RID was from the BUILTIN domain, but this creates a guest
    account token for the real domain.
    
    Andrew Bartlett
    
    Autobuild-User(master): Andrew Bartlett <abartlet at samba.org>
    Autobuild-Date(master): Thu Jul 19 05:56:28 CEST 2012 on sn-devel-104
    
    Fix bug #9067 - Domain Guest have wrong primary group RID.

-----------------------------------------------------------------------

Summary of changes:
 source3/auth/auth_util.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index cb1d319..fc93641 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -734,7 +734,7 @@ static NTSTATUS get_guest_info3(TALLOC_CTX *mem_ctx,
 	info3->base.rid = DOMAIN_RID_GUEST;
 
 	/* Primary gid */
-	info3->base.primary_gid = BUILTIN_RID_GUESTS;
+	info3->base.primary_gid = DOMAIN_RID_GUESTS;
 
 	TALLOC_FREE(pwd);
 	return NT_STATUS_OK;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list