diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-10 02:30:18 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-10 02:30:18 +0000 |
commit | 7f3373649af24e4b12f5ddaf7d2f1bfcdaa4a461 (patch) | |
tree | bf2b2442217d108b1bb2e6f3bb4cd03d436f70c5 /source3 | |
parent | f3918919d24ebd1bf1f309e65196e216558da0b5 (diff) | |
download | samba-7f3373649af24e4b12f5ddaf7d2f1bfcdaa4a461.tar.gz samba-7f3373649af24e4b12f5ddaf7d2f1bfcdaa4a461.tar.bz2 samba-7f3373649af24e4b12f5ddaf7d2f1bfcdaa4a461.zip |
added some comments
(This used to be commit 34589d5a4786b7e441efecaef0575f9eaa0d7edf)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/winbindd_cache.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); } |