X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftree-cmp.c;h=4b70a8308277c5aa15a3055064a79293e5656fec;hp=1fed0234cccbd07044364ec07cadea53e25117ba;hb=e8db2c80ad428c536de564c9c29e1dc2893cafcb;hpb=681d8fcc1af3b0eb94031311e51cb0f422382ee6 diff --git a/tests/tree-cmp.c b/tests/tree-cmp.c index 1fed0234..4b70a830 100644 --- a/tests/tree-cmp.c +++ b/tests/tree-cmp.c @@ -323,16 +323,14 @@ static void tree_cmp(char file1[], int file1_len, char file2[], int file2_len) file1, file2); #if 0 if (ntfs_mode && st1.st_atime != st2.st_atime) - difference("Access times of `%s' and `%s' are not the same", - file1, file2); + difference("Access times of `%s' (%x) and `%s' (%x) are " + "not the same", + file1, st1.st_atime, file2, st2.st_atime); +#endif if (st1.st_mtime != st2.st_mtime) difference("Modification times of `%s' (%x) and `%s' (%x) are " "not the same", file1, st1.st_mtime, file2, st2.st_mtime); - if (st1.st_ctime != st2.st_ctime) - difference("Status change times of `%s' and `%s' are not the same", - file1, file2); -#endif if ((ntfs_mode || S_ISREG(st1.st_mode)) && st1.st_nlink != st2.st_nlink) difference("Link count of `%s' (%u) and `%s' (%u) " "are not the same",