summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-03-18 14:24:07 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-03-18 15:52:19 -0400
commitb95ae6e67a95b1d7c43e2ab5ee015bff33258de9 (patch)
tree6ecf5c1ba9e0f0016ce6f7823d8b383f61b20167
parent9f461eefc0052c3fd998371a7001a13393350920 (diff)
downloadsssd-b95ae6e67a95b1d7c43e2ab5ee015bff33258de9.tar.gz
sssd-b95ae6e67a95b1d7c43e2ab5ee015bff33258de9.tar.xz
sssd-b95ae6e67a95b1d7c43e2ab5ee015bff33258de9.zip
Fix error message for ldap_start_tls
-rw-r--r--src/providers/ldap/sdap_async_connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_connection.c b/src/providers/ldap/sdap_async_connection.c
index fe8a50182..586733f46 100644
--- a/src/providers/ldap/sdap_async_connection.c
+++ b/src/providers/ldap/sdap_async_connection.c
@@ -162,7 +162,7 @@ struct tevent_req *sdap_connect_send(TALLOC_CTX *memctx,
lret = ldap_start_tls(state->sh->ldap, NULL, NULL, &msgid);
if (lret != LDAP_SUCCESS) {
- DEBUG(3, ("ldap_start_tls failed: [%s]", ldap_err2string(ret)));
+ DEBUG(3, ("ldap_start_tls failed: [%s]\n", ldap_err2string(lret)));
goto fail;
}