summaryrefslogtreecommitdiff
path: root/difftool
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-11 00:31:17 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-11 00:31:17 +0200
commiteb01ccca21a9a2e1693b28871f65934e8931e3bf (patch)
tree2a2c76e4bbb3668fdf4e0aa667c80519c76b01f4 /difftool
parentb3c3401aee91bc2ff46ba0eab0ceb88c78cb5bbb (diff)
Replace fstree_from_dir boolean with flag field
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'difftool')
-rw-r--r--difftool/fscompare.c4
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);