From: Gerald Carter Date: Sun, 6 May 2007 19:46:03 +0000 (+0000) Subject: r22708: disable saving the trusted domain list as we want to the parent daemon to... X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~536 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a9152a2acfc7b615a5c6b8764ea9462443f00d1;p=thirdparty%2Fsamba.git r22708: disable saving the trusted domain list as we want to the parent daemon to manage the complete trusted domain cache --- diff --git a/source/nsswitch/winbindd_cache.c b/source/nsswitch/winbindd_cache.c index 727c5c74df5..7538cddbdff 100644 --- a/source/nsswitch/winbindd_cache.c +++ b/source/nsswitch/winbindd_cache.c @@ -2021,6 +2021,10 @@ do_query: status = NT_STATUS_OK; } + +#if 0 /* Disabled as we want the trust dom list to be managed by + the main parent and always to make the query. --jerry */ + /* and save it */ refresh_sequence_number(domain, False); @@ -2041,6 +2045,8 @@ do_query: centry_free(centry); skip_save: +#endif + return status; }