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

r20480: In Samba3 we don't yet have support for all 4 file times on all platforms (do

we have any?? ;-), so don't mark failure to correctly cope with the close
write time as critical.

Volker
(This used to be commit 42070b09cb)
This commit is contained in:
Volker Lendecke 2007-01-02 16:18:51 +00:00 committed by Gerald (Jerry) Carter
parent b885bc4a20
commit e1c244a1cf

View File

@ -101,7 +101,15 @@ BOOL torture_raw_close(struct torture_context *torture)
&finfo.all_info.out.change_time)) {
printf("Incorrect times after close - only write time should be set\n");
dump_all_info(mem_ctx, &finfo);
ret = False;
if (!lp_parm_bool(-1, "torture", "samba3", False)) {
/*
* In Samba3 as of 3.0.23d we don't yet support all
* file times, so don't mark this as a critical
* failure
*/
ret = False;
}
}