summaryrefslogtreecommitdiff
path: root/source3/libsmb/trusts_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/libsmb/trusts_util.c')
-rw-r--r--source3/libsmb/trusts_util.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/libsmb/trusts_util.c b/source3/libsmb/trusts_util.c
index e0c5e79595..569b0521be 100644
--- a/source3/libsmb/trusts_util.c
+++ b/source3/libsmb/trusts_util.c
@@ -153,8 +153,16 @@ BOOL is_trusted_domain(const char* dom_name)
/*
* Query the trustdom_cache updated periodically. The only
* way for domain member server.
+ *
+ * Sure...it's all fun and games until someone gets hurt...
+ * This call cannot work without winbindd running since it
+ * is the only process updating the cache currently.
+ *
+ * FIXME!!! make this always true for now until I figure
+ * out what to do --jerry
*/
- if (trustdom_cache_fetch(dom_name, &trustdom_sid)) {
+
+ if (True || trustdom_cache_fetch(dom_name, &trustdom_sid)) {
return True;
}