From 3e449693bd5c944f69c5206685a09fb8102bc3a8 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 5 Apr 2004 12:14:31 +0000 Subject: r38: Fix caching of name->sid lookups Volker (This used to be commit 23c5769545dc8371a679ad4c679578c617f7d85b) --- source3/nsswitch/winbindd_cache.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 73918d74f7..43a0f9cf39 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -606,10 +606,11 @@ static void wcache_save_name_to_sid(struct winbindd_domain *domain, centry = centry_start(domain, status); if (!centry) return; + centry_put_uint32(centry, type); centry_put_sid(centry, sid); fstrcpy(uname, name); strupper_m(uname); - centry_end(centry, "NS/%s", sid_to_string(sid_string, sid)); + centry_end(centry, "NS/%s/%s", domain->name, uname); DEBUG(10,("wcache_save_name_to_sid: %s -> %s\n", uname, sid_string)); centry_free(centry); } -- cgit