summaryrefslogtreecommitdiff
path: root/source4/dsdb/common
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-14 22:53:35 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-14 15:37:22 +0200
commitfd0394d85d6da511eed96fe3dda72dfe92b83481 (patch)
treed85ce248a09cfd1fa5eb0c609ed5953c551a6504 /source4/dsdb/common
parentc47d73f6c495d1585fa369c75da1173e78002da0 (diff)
downloadsamba-fd0394d85d6da511eed96fe3dda72dfe92b83481.tar.gz
samba-fd0394d85d6da511eed96fe3dda72dfe92b83481.tar.bz2
samba-fd0394d85d6da511eed96fe3dda72dfe92b83481.zip
s4-libnet: Improve debugging of libnet_BecomeDC LDAP errors
Diffstat (limited to 'source4/dsdb/common')
-rw-r--r--source4/dsdb/common/util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c
index 251e17759b..fd54e4adb9 100644
--- a/source4/dsdb/common/util.c
+++ b/source4/dsdb/common/util.c
@@ -1590,6 +1590,8 @@ int samdb_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_
ret = dsdb_search(ldb, mem_ctx, &res, base, LDB_SCOPE_BASE, attrs, DSDB_SEARCH_ONE_ONLY, NULL);
if (ret != LDB_SUCCESS) {
+ ldb_asprintf_errstring(ldb, "Cannot find DN %s to get attribute %s for reference dn: %s",
+ ldb_dn_get_linearized(base), attribute, ldb_errstring(ldb));
return ret;
}