From eb01ccca21a9a2e1693b28871f65934e8931e3bf Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 11 Aug 2019 00:31:17 +0200 Subject: Replace fstree_from_dir boolean with flag field Signed-off-by: David Oberhollenzer --- difftool/fscompare.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'difftool/fscompare.c') 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); -- cgit v1.2.3