summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-06-26 14:09:10 +0200
committerKarolin Seeger <kseeger@samba.org>2009-08-11 15:02:00 +0200
commit12277e145f4dcc589e84e4a90b2497728d2317b6 (patch)
tree845727e77c22c355bcdce5dd7dc02cfd054e9835
parent6ee6e122fd81ab0b208e9f69cc1bd651e328d97c (diff)
downloadsamba-12277e145f4dcc589e84e4a90b2497728d2317b6.tar.gz
samba-12277e145f4dcc589e84e4a90b2497728d2317b6.tar.xz
samba-12277e145f4dcc589e84e4a90b2497728d2317b6.zip
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
-rw-r--r--source/passdb/lookup_sid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/passdb/lookup_sid.c b/source/passdb/lookup_sid.c
index 1971caeab86..3cd7d024f42 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;