1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r19116: fixed a checker warning

(This used to be commit 48243721df)
This commit is contained in:
Andrew Tridgell 2006-10-06 07:44:36 +00:00 committed by Gerald (Jerry) Carter
parent 08478f8f92
commit 0f60472cb2

View File

@ -231,14 +231,12 @@ static int test_opendir(void)
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 @@ bool torture_local_replace(struct torture_context *torture)
ret &= test_vasprintf();
ret &= test_vsnprintf();
ret &= test_opendir();
ret &= test_readdir() ;
ret &= test_readdir();
ret &= test_telldir();
ret &= test_seekdir();
ret &= test_dlopen();