From ba8eff660b91841fac333e5a126b6453199ef69a Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Thu, 9 Mar 2006 16:08:15 +0000 Subject: [PATCH] r14076: When the backends trusted_domains call comes back with no trusts the NTSTATUS code will be NT_STATUS_NO_MORE_ENTRIES. In that case store NT_STATUS_OK in the centry so that the entry does not automatically deleted upon startup or invalidated upon next query. Guenther (This used to be commit 200d4566619c58951e22d9543420407b3baf878f) --- source3/nsswitch/winbindd_cache.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 8e694ed8506..c99888be3e5 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -1672,7 +1672,15 @@ do_query: status = domain->backend->trusted_domains(domain, mem_ctx, num_domains, names, alt_names, dom_sids); - + + /* no trusts gives NT_STATUS_NO_MORE_ENTRIES resetting to NT_STATUS_OK + * so that the generic centry handling still applies correctly - + * Guenther*/ + + if (!NT_STATUS_IS_ERR(status)) { + status = NT_STATUS_OK; + } + /* and save it */ refresh_sequence_number(domain, False); -- 2.11.4.GIT