svn commit: samba r1855 - branches/SAMBA_4_0/source/torture/ldap

metze at samba.org metze at samba.org
Tue Aug 17 11:04:12 GMT 2004


Author: metze
Date: 2004-08-17 11:04:12 +0000 (Tue, 17 Aug 2004)
New Revision: 1855

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/&rev=1855&nolog=1

Log:
fix compiler warning and output fromatting

metze

Modified:
   branches/SAMBA_4_0/source/torture/ldap/basic.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/ldap/basic.c
===================================================================
--- branches/SAMBA_4_0/source/torture/ldap/basic.c	2004-08-17 10:49:41 UTC (rev 1854)
+++ branches/SAMBA_4_0/source/torture/ldap/basic.c	2004-08-17 11:04:12 UTC (rev 1855)
@@ -41,6 +41,8 @@
 	NTSTATUS status;
 	BOOL ret = True;
 
+	printf("Testing sasl bind as user\n");
+
 	status = torture_ldap_bind_sasl(conn, username, domain, password);
 	if (!NT_STATUS_IS_OK(status)) {
 		ret = False;
@@ -53,7 +55,7 @@
 {
 	BOOL ret = True;
 
-	printf("\nTesting multiple binds on a single connnection as anonymous and user\n");
+	printf("Testing multiple binds on a single connnection as anonymous and user\n");
 
 	ret = test_bind_simple(conn, NULL, NULL);
 	if (!ret) {
@@ -80,7 +82,7 @@
 	const char *domain = lp_workgroup();
 	const char *password = lp_parm_string(-1, "torture", "password");
 	const char *userdn = lp_parm_string(-1, "torture", "ldap_userdn");
-	const char *basedn = lp_parm_string(-1, "torture", "ldap_basedn");
+	/*const char *basedn = lp_parm_string(-1, "torture", "ldap_basedn");*/
 	const char *secret = lp_parm_string(-1, "torture", "ldap_secret");
 	char *url;
 



More information about the samba-cvs mailing list