svn commit: samba r18969 - in branches/SAMBA_3_0/source: include libsmb sam

gd at samba.org gd at samba.org
Thu Sep 28 03:21:50 GMT 2006


Author: gd
Date: 2006-09-28 03:21:49 +0000 (Thu, 28 Sep 2006)
New Revision: 18969

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

Log:
Fix typo.

Guenther

Modified:
   branches/SAMBA_3_0/source/include/client.h
   branches/SAMBA_3_0/source/libsmb/cliconnect.c
   branches/SAMBA_3_0/source/sam/idmap_rid.c


Changeset:
Modified: branches/SAMBA_3_0/source/include/client.h
===================================================================
--- branches/SAMBA_3_0/source/include/client.h	2006-09-28 01:17:16 UTC (rev 18968)
+++ branches/SAMBA_3_0/source/include/client.h	2006-09-28 03:21:49 UTC (rev 18969)
@@ -175,6 +175,6 @@
 
 #define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001
 #define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
-#define CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK 0x0004
+#define CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK 0x0004
 
 #endif /* _CLIENT_H */

Modified: branches/SAMBA_3_0/source/libsmb/cliconnect.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/cliconnect.c	2006-09-28 01:17:16 UTC (rev 18968)
+++ branches/SAMBA_3_0/source/libsmb/cliconnect.c	2006-09-28 03:21:49 UTC (rev 18969)
@@ -1530,7 +1530,7 @@
 				      pw_len, domain);
 	if (!NT_STATUS_IS_OK(nt_status)) {
 
-		if (!(flags & CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK)) {
+		if (!(flags & CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK)) {
 			DEBUG(1,("failed session setup with %s\n",
 				 nt_errstr(nt_status)));
 			cli_shutdown(cli);
@@ -1688,7 +1688,7 @@
 	
 	nt_status = cli_full_connection(&cli, myname, server, server_ip, 0, "IPC$", "IPC", 
 					user_info->username, lp_workgroup(), user_info->password, 
-					CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK, Undefined, NULL);
+					CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK, Undefined, NULL);
 
 	if (NT_STATUS_IS_OK(nt_status)) {
 		return cli;

Modified: branches/SAMBA_3_0/source/sam/idmap_rid.c
===================================================================
--- branches/SAMBA_3_0/source/sam/idmap_rid.c	2006-09-28 01:17:16 UTC (rev 18968)
+++ branches/SAMBA_3_0/source/sam/idmap_rid.c	2006-09-28 03:21:49 UTC (rev 18969)
@@ -226,7 +226,7 @@
 			username,
 			lp_workgroup(),
 			password,
-			CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK, True, NULL);
+			CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK, True, NULL);
 
 	if (!NT_STATUS_IS_OK(status)) {
 		DEBUG(1, ("rid_idmap_get_domains: could not setup connection to dc\n"));



More information about the samba-cvs mailing list