diff options
Diffstat (limited to 'difftool')
-rw-r--r-- | difftool/fscompare.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/difftool/fscompare.c b/difftool/fscompare.c index 3f00a5c..6717610 100644 --- a/difftool/fscompare.c +++ b/difftool/fscompare.c @@ -104,10 +104,10 @@ int main(int argc, char **argv) if (fstree_init(&bfs, 512, NULL)) goto out_afs; - if (fstree_from_dir(&afs, first_path, true)) + if (fstree_from_dir(&afs, first_path, DIR_SCAN_KEEP_TIME)) goto out_bfs; - if (fstree_from_dir(&bfs, second_path, true)) + if (fstree_from_dir(&bfs, second_path, DIR_SCAN_KEEP_TIME)) goto out_bfs; tree_node_sort_recursive(afs.root); |