From: Christos Zoulas Date: Mon, 29 Mar 2021 19:54:28 +0000 (-0400) Subject: Fix typo X-Git-Tag: v3.5.2~19^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=42776e9db8d2319929be87048616961510f904b4;p=thirdparty%2Flibarchive.git Fix typo --- diff --git a/libarchive/archive_read_disk_posix.c b/libarchive/archive_read_disk_posix.c index 49631ab0c..28949fc99 100644 --- a/libarchive/archive_read_disk_posix.c +++ b/libarchive/archive_read_disk_posix.c @@ -1528,7 +1528,7 @@ get_xfer_size(struct tree *t, int fd, const char *path) static void set_transfer_size(struct filesystem *fs, const struct statfs *sfs) { - fs->xfer_align = sfs->f_bsize > 0 ? (long)sfs->fs_bsize : -1; + fs->xfer_align = sfs->f_bsize > 0 ? (long)sfs->f_bsize : -1; fs->max_xfer_size = -1; fs->min_xfer_size = sfs->f_iosize > 0 ? (long)sfs->f_iosize : -1; fs->incr_xfer_size = sfs->f_iosize > 0 ? (long)sfs->f_iosize : -1;