torture_denytest2 accesses the wrong array denytable1 which may lead to an incorrect display of progress, if in some future release the sizes of the arrays denytable1 and denytable2 differ. Fix: diff U3w C:\Projects\samba3\source\torture\denytest.c C:\Projects\samba3\source\torture\Kopie von denytest.c --- C:\Projects\samba3\source\torture\denytest.c Tue Apr 24 12:21:54 2007 +++ C:\Projects\samba3\source\torture\Kopie von denytest.c Tue Apr 17 12:07:37 2007 @@ -1515,7 +1515,7 @@ enum deny_result res; const char *fname = fnames[denytable2[i].isexe]; - progress_bar(i, ARRAY_SIZE(denytable1)); + progress_bar(i, ARRAY_SIZE(denytable2)); fnum1 = cli_open(cli1, fname, denytable2[i].mode1,
Fixed in 3.025b