From 7f3373649af24e4b12f5ddaf7d2f1bfcdaa4a461 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 10 Dec 2001 02:30:18 +0000 Subject: added some comments (This used to be commit 34589d5a4786b7e441efecaef0575f9eaa0d7edf) --- source3/nsswitch/winbindd_cache.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 9f87f8377f..7ec2888b36 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -715,6 +715,7 @@ static NTSTATUS trusted_domains(struct winbindd_domain *domain, { struct winbind_cache *cache = get_cache(domain); + /* we don't cache this call */ return cache->backend->trusted_domains(domain, mem_ctx, num_domains, names, dom_sids); } @@ -724,6 +725,7 @@ static NTSTATUS domain_sid(struct winbindd_domain *domain, DOM_SID *sid) { struct winbind_cache *cache = get_cache(domain); + /* we don't cache this call */ return cache->backend->domain_sid(domain, sid); } -- cgit