svn commit: samba r3613 - in branches/SAMBA_4_0/source/libcli/auth: .

tridge at samba.org tridge at samba.org
Mon Nov 8 02:43:49 GMT 2004


Author: tridge
Date: 2004-11-08 02:43:49 +0000 (Mon, 08 Nov 2004)
New Revision: 3613

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

Log:
fixed a typo


Modified:
   branches/SAMBA_4_0/source/libcli/auth/gensec.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/auth/gensec.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/auth/gensec.c	2004-11-08 02:28:12 UTC (rev 3612)
+++ branches/SAMBA_4_0/source/libcli/auth/gensec.c	2004-11-08 02:43:49 UTC (rev 3613)
@@ -201,7 +201,7 @@
 		if (gensec_security->ops->client_start) {
 			status = gensec_security->ops->client_start(gensec_security);
 			if (!NT_STATUS_IS_OK(status)) {
-				DEBUG(1, ("Faild to start GENSEC client mech %s: %s\n",
+				DEBUG(1, ("Failed to start GENSEC client mech %s: %s\n",
 					  gensec_security->ops->name, nt_errstr(status))); 
 			}
 			return status;
@@ -210,7 +210,7 @@
 		if (gensec_security->ops->server_start) {
 			status = gensec_security->ops->server_start(gensec_security);
 			if (!NT_STATUS_IS_OK(status)) {
-				DEBUG(1, ("Faild to start GENSEC server mech %s: %s\n",
+				DEBUG(1, ("Failed to start GENSEC server mech %s: %s\n",
 					  gensec_security->ops->name, nt_errstr(status))); 
 			}
 			return status;



More information about the samba-cvs mailing list