r7717: fixed some typos
authorAndrew Tridgell <tridge@samba.org>
Sat, 18 Jun 2005 09:09:27 +0000 (09:09 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:18:25 +0000 (13:18 -0500)
(This used to be commit fc8feee56034fe165359c804d111f80e5b3ebb65)

source4/libcli/ldap/ldap_bind.c

index ea977982612b252accd3e23372ee7fb9e3678679..7e4fa10fe46eca1545d5f1f277be5ec2e00f0a64 100644 (file)
@@ -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;
        }