1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-09-16 07:10:07 +00:00

Merge branch '7.0'

This commit is contained in:
杨赫然
2020-02-17 12:02:50 +08:00
2 changed files with 6 additions and 5 deletions

View File

@@ -6003,7 +6003,7 @@ find_deleted_recursive (SeafRepo *repo,
add_deleted_entry (repo, entries, dent2, base, child, parent);
} else if (S_ISDIR(dent1->mode) && strcmp(dent1->id, dent2->id) != 0) {
SeafDir *n1 = seaf_fs_manager_get_seafdir_sorted (seaf->fs_mgr,
repo->id,
repo->store_id,
repo->version,
dent1->id);
if (!n1) {
@@ -6012,7 +6012,7 @@ find_deleted_recursive (SeafRepo *repo,
}
SeafDir *n2 = seaf_fs_manager_get_seafdir_sorted (seaf->fs_mgr,
repo->id,
repo->store_id,
repo->version,
dent2->id);
if (!n2) {
@@ -6056,7 +6056,7 @@ find_deleted (SeafRepo *repo,
int ret = 0;
d1 = seaf_fs_manager_get_seafdir_sorted_by_path (seaf->fs_mgr,
repo->id,
repo->store_id,
repo->version,
child->root_id, base);
if (!d1) {
@@ -6064,7 +6064,7 @@ find_deleted (SeafRepo *repo,
}
d2 = seaf_fs_manager_get_seafdir_sorted_by_path (seaf->fs_mgr,
repo->id,
repo->store_id,
repo->version,
parent->root_id, base);
if (!d2) {