mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: False positives when synchronizing directories with zero-length files (issue #163)
This commit is contained in:
parent
ec52c75b36
commit
f585d79444
1 changed files with 2 additions and 1 deletions
|
|
@ -1100,7 +1100,8 @@ procedure TfrmSyncDirsDlg.FillFoundItemsDG;
|
|||
if Assigned(r.FFileL) and not Assigned(r.FFileR) then Inc(FuniqueL) else
|
||||
if Assigned(r.FFileR) and not Assigned(r.FFileL) then Inc(FuniqueR);
|
||||
if r.FState = srsEqual then Inc(Fequal) else
|
||||
if r.FState = srsNotEq then Inc(Fnoneq);
|
||||
if r.FState = srsNotEq then Inc(Fnoneq) else
|
||||
if Assigned(r.FFileL) and Assigned(r.FFileR) then Inc(Fnoneq);
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue