1
1

Fix calculating of directory apparent sizes with hard links

Silly one-character typo that causes directory apparent sizes to be very
off in some scenarios.

Reported & patched by Andrew Neitsch.
Этот коммит содержится в:
Yorhel 2020-05-06 07:03:00 +02:00
родитель 4a2def5223
Коммит 9a3727759c

Просмотреть файл

@ -84,7 +84,7 @@ static void hlink_check(struct dir *d) {
i=0;
if(i) {
par->size = adds64(par->size, d->size);
par->asize = adds64(par->size, d->asize);
par->asize = adds64(par->asize, d->asize);
}
}
}