diff options
| author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-11 00:31:17 +0200 | 
|---|---|---|
| committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-11 00:31:17 +0200 | 
| commit | eb01ccca21a9a2e1693b28871f65934e8931e3bf (patch) | |
| tree | 2a2c76e4bbb3668fdf4e0aa667c80519c76b01f4 /difftool | |
| parent | b3c3401aee91bc2ff46ba0eab0ceb88c78cb5bbb (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.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); | 
