The branch, master has been updated
via 9bc14af s3: Fix a cut&paste error in pdb_ads_connect
from 831ff45 s3: Use jenkins hash for str_checksum, fix bug 8010
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 9bc14afe960808197ad5c5f90bcd6c13b58990d4
Author: Volker Lendecke <[email protected]>
Date: Wed Mar 16 07:31:48 2011 +0100
s3: Fix a cut&paste error in pdb_ads_connect
Autobuild-User: Volker Lendecke <[email protected]>
Autobuild-Date: Wed Mar 16 08:22:28 CET 2011 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
source3/passdb/pdb_ads.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/passdb/pdb_ads.c b/source3/passdb/pdb_ads.c
index 5afad1c..9960d38 100644
--- a/source3/passdb/pdb_ads.c
+++ b/source3/passdb/pdb_ads.c
@@ -2509,7 +2509,7 @@ static NTSTATUS pdb_ads_connect(struct pdb_ads_state
*state,
state->configdn = tldap_talloc_single_attribute(
rootdse, "configurationNamingContext", state);
- if (state->domaindn == NULL) {
+ if (state->configdn == NULL) {
DEBUG(10, ("Could not get configurationNamingContext\n"));
status = NT_STATUS_INTERNAL_DB_CORRUPTION;
goto done;
--
Samba Shared Repository