diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-06-18 09:09:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:18:25 -0500 |
commit | ca91a8a6919b9bc1b6016310c6b30447723b08d6 (patch) | |
tree | 5b15de98d780fcaf5bbb0f427a89364d2d33c9c7 /source4/libcli | |
parent | 1e99722d020f38eaad7fe2010f43c23586a19410 (diff) | |
download | samba-ca91a8a6919b9bc1b6016310c6b30447723b08d6.tar.gz samba-ca91a8a6919b9bc1b6016310c6b30447723b08d6.tar.bz2 samba-ca91a8a6919b9bc1b6016310c6b30447723b08d6.zip |
r7717: fixed some typos
(This used to be commit fc8feee56034fe165359c804d111f80e5b3ebb65)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/ldap/ldap_bind.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/libcli/ldap/ldap_bind.c b/source4/libcli/ldap/ldap_bind.c index ea97798261..7e4fa10fe4 100644 --- a/source4/libcli/ldap/ldap_bind.c +++ b/source4/libcli/ldap/ldap_bind.c @@ -154,28 +154,28 @@ NTSTATUS ldap_bind_sasl(struct ldap_connection *conn, struct cli_credentials *cr status = gensec_set_credentials(conn->gensec, creds); if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("Failed to start set GENSEC creds: %s\n", + DEBUG(1, ("Failed to set GENSEC creds: %s\n", nt_errstr(status))); goto failed; } status = gensec_set_target_hostname(conn->gensec, conn->host); if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("Failed to start set GENSEC target hostname: %s\n", + DEBUG(1, ("Failed to set GENSEC target hostname: %s\n", nt_errstr(status))); goto failed; } status = gensec_set_target_service(conn->gensec, "ldap"); if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("Failed to start set GENSEC target service: %s\n", + DEBUG(1, ("Failed to set GENSEC target service: %s\n", nt_errstr(status))); goto failed; } status = gensec_start_mech_by_sasl_name(conn->gensec, "NTLM"); if (!NT_STATUS_IS_OK(status)) { - DEBUG(1, ("Failed to start set GENSEC client SPNEGO mechanism: %s\n", + DEBUG(1, ("Failed to set GENSEC client SPNEGO mechanism: %s\n", nt_errstr(status))); goto failed; } |