svn commit: samba r19116 - in branches/SAMBA_4_0/source/lib/replace/test: .

tridge at samba.org tridge at samba.org
Fri Oct 6 07:44:40 GMT 2006


Author: tridge
Date: 2006-10-06 07:44:36 +0000 (Fri, 06 Oct 2006)
New Revision: 19116

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

Log:

fixed a checker warning

Modified:
   branches/SAMBA_4_0/source/lib/replace/test/testsuite.c


Changeset:
Modified: branches/SAMBA_4_0/source/lib/replace/test/testsuite.c
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/test/testsuite.c	2006-10-06 07:09:22 UTC (rev 19115)
+++ branches/SAMBA_4_0/source/lib/replace/test/testsuite.c	2006-10-06 07:44:36 UTC (rev 19116)
@@ -231,14 +231,12 @@
 
 extern int test_readdir_os2_delete(void);
 
-static bool test_readdir(void)
+static int test_readdir(void)
 {
 	printf("testing readdir\n");
 	if (test_readdir_os2_delete() != 0) {
 		return false;
 	}
-
-	/* FIXME */
 	return true;
 }
 
@@ -400,7 +398,7 @@
 	ret &= test_vasprintf();
 	ret &= test_vsnprintf();
 	ret &= test_opendir();
-	ret &= test_readdir() ;
+	ret &= test_readdir();
 	ret &= test_telldir();
 	ret &= test_seekdir();
 	ret &= test_dlopen();



More information about the samba-cvs mailing list