svn commit: samba r7717 - in branches/SAMBA_4_0/source/libcli/ldap: .

tridge at samba.org tridge at samba.org
Sat Jun 18 09:09:28 GMT 2005


Author: tridge
Date: 2005-06-18 09:09:27 +0000 (Sat, 18 Jun 2005)
New Revision: 7717

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7717

Log:
fixed some typos




Modified:
   branches/SAMBA_4_0/source/libcli/ldap/ldap_bind.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/ldap/ldap_bind.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/ldap/ldap_bind.c	2005-06-18 09:08:08 UTC (rev 7716)
+++ branches/SAMBA_4_0/source/libcli/ldap/ldap_bind.c	2005-06-18 09:09:27 UTC (rev 7717)
@@ -154,28 +154,28 @@
 
 	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;
 	}



More information about the samba-cvs mailing list