summaryrefslogtreecommitdiff
path: root/source3/nsswitch
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-01-14 16:25:39 +0000
committerGerald Carter <jerry@samba.org>2004-01-14 16:25:39 +0000
commitfe48d1c800abd9224fef3885adbeade5e3ff4a18 (patch)
tree52cf3132fc5d26d43973f801aee544b9b0791d7b /source3/nsswitch
parent9bf45a0393dc75128373984e663748d0864b43d2 (diff)
downloadsamba-fe48d1c800abd9224fef3885adbeade5e3ff4a18.tar.gz
samba-fe48d1c800abd9224fef3885adbeade5e3ff4a18.tar.bz2
samba-fe48d1c800abd9224fef3885adbeade5e3ff4a18.zip
* Revert to using rpc for mixed mode AD domains.
The reason for this are: (a) the set_dc_type_and_flags() cannot tell the different between connecting to an NT4 domain and an NT4 BDC of a mixed mode domain. (b) the connection management for the rpc backend only provides on named pipe per cli_state. So it is possible to connect to an NT4 BDC for netlogon and an AD mixed mode DC for lsarpc. RPC is the lowest common demonimator here. (c) Issue with the sequence number value between the highestCommittedUSN LDAP attribute and the seq_num returned via RPC. We will revisit this later, but the changes need to make this work right now are too broad and risky. (This used to be commit 1ed2e521536108229d153c2996f4757d89461166)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r--source3/nsswitch/winbindd_cache.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c
index 8dec89a6aa..91834e476f 100644
--- a/source3/nsswitch/winbindd_cache.c
+++ b/source3/nsswitch/winbindd_cache.c
@@ -112,9 +112,13 @@ static struct winbind_cache *get_cache(struct winbindd_domain *domain)
break;
}
- /* if it have either of the indications of ADS,
- use ads_methods */
- if ( domain->active_directory || domain->native_mode ) {
+ /* only use ADS for native modes at the momment.
+ The problem is the correct detection of mixed
+ mode domains from NT4 BDC's --jerry */
+
+ if ( domain->native_mode ) {
+ DEBUG(5,("get_cache: Setting ADS methods for domain %s\n",
+ domain->name));
domain->backend = &ads_methods;
break;
}
@@ -123,6 +127,8 @@ static struct winbind_cache *get_cache(struct winbindd_domain *domain)
}
#endif
default:
+ DEBUG(5,("get_cache: Setting MS-RPC methods for domain %s\n",
+ domain->name));
domain->backend = &msrpc_methods;
}
}