mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
diff-tree: use new base_name_compare() helper function
This fixes diff-tree sorting of directories vs files (we used to use just the regular cache_name_compare() which only works on full file pathnames).
This commit is contained in:
parent
958ba6c96e
commit
e46091d5f3
@ -107,7 +107,7 @@ static int compare_tree_entry(void *tree1, unsigned long size1, void *tree2, uns
|
||||
|
||||
pathlen1 = strlen(path1);
|
||||
pathlen2 = strlen(path2);
|
||||
cmp = cache_name_compare(path1, pathlen1, path2, pathlen2);
|
||||
cmp = base_name_compare(path1, pathlen1, mode1, path2, pathlen2, mode2);
|
||||
if (cmp < 0) {
|
||||
show_file("-", tree1, size1, base);
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user