summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-10 02:30:18 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-10 02:30:18 +0000
commit34589d5a4786b7e441efecaef0575f9eaa0d7edf (patch)
treee29f014669bd746cf2bb3a62f7149afc823f1b19
parent7c60ae59378be1b2af2e57ee3927966a29a797a5 (diff)
downloadsamba-34589d5a4786b7e441efecaef0575f9eaa0d7edf.tar.gz
added some comments
-rw-r--r--source/nsswitch/winbindd_cache.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/nsswitch/winbindd_cache.c b/source/nsswitch/winbindd_cache.c
index 9f87f8377f9..7ec2888b368 100644
--- a/source/nsswitch/winbindd_cache.c
+++ b/source/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);
}