[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3647-g12277e1

Karolin Seeger kseeger at samba.org
Tue Aug 11 07:02:35 MDT 2009


The branch, v3-2-test has been updated
       via  12277e145f4dcc589e84e4a90b2497728d2317b6 (commit)
      from  6ee6e122fd81ab0b208e9f69cc1bd651e328d97c (commit)

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


- Log -----------------------------------------------------------------
commit 12277e145f4dcc589e84e4a90b2497728d2317b6
Author: Michael Adam <obnox at samba.org>
Date:   Fri Jun 26 14:09:10 2009 +0200

    s3:passdb: fix bug #6509: use gid (not uid) cache in fetch_gid_from_cache().
    
    With the previous code, the cache can never have been hit at all.
    
    Michael

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

Summary of changes:
 source/passdb/lookup_sid.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/passdb/lookup_sid.c b/source/passdb/lookup_sid.c
index 1971cae..3cd7d02 100644
--- a/source/passdb/lookup_sid.c
+++ b/source/passdb/lookup_sid.c
@@ -1085,7 +1085,7 @@ static bool fetch_gid_from_cache(gid_t *pgid, const DOM_SID *psid)
 {
 	DATA_BLOB cache_value;
 
-	if (!memcache_lookup(NULL, SID_UID_CACHE,
+	if (!memcache_lookup(NULL, SID_GID_CACHE,
 			     data_blob_const(psid, ndr_size_dom_sid(psid, 0)),
 			     &cache_value)) {
 		return false;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list