summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbindd_cache.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-01-08 02:15:46 +0000
committerAndrew Bartlett <abartlet@samba.org>2004-01-08 02:15:46 +0000
commit88d8644ef7f588f585530cbefc1dc5a2133c1114 (patch)
treec61289d92abfd995012ebfd550d23bf33817e599 /source3/nsswitch/winbindd_cache.c
parent0e12b8827402155095b1d8d5be23aa26d26b200a (diff)
downloadsamba-88d8644ef7f588f585530cbefc1dc5a2133c1114.tar.gz
samba-88d8644ef7f588f585530cbefc1dc5a2133c1114.tar.bz2
samba-88d8644ef7f588f585530cbefc1dc5a2133c1114.zip
Move more of winbind to use 'find_our_domain()' rather than the dangerous
find_domain_from_name(lp_workgroup()). (as find_domain_from_name() can change the data in lp_workgroup()) Andrew Bartlett (This used to be commit 2e6eaad9ce6a0ad6923b5952ef6cf1c3688b7cfa)
Diffstat (limited to 'source3/nsswitch/winbindd_cache.c')
-rw-r--r--source3/nsswitch/winbindd_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c
index a3c1706b75..2df2ea6374 100644
--- a/source3/nsswitch/winbindd_cache.c
+++ b/source3/nsswitch/winbindd_cache.c
@@ -107,7 +107,7 @@ static struct winbind_cache *get_cache(struct winbindd_domain *domain)
case SEC_ADS: {
extern struct winbindd_methods ads_methods;
/* always obey the lp_security parameter for our domain */
- if ( strequal(lp_realm(), domain->alt_name) || strequal(lp_workgroup(), domain->name) ) {
+ if (domain->primary) {
domain->backend = &ads_methods;
break;
}