From: Sergey Poznyakoff Date: Wed, 3 Jun 2020 06:31:41 +0000 (+0300) Subject: Bugfix X-Git-Tag: release_1_33~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=615732a8047ed2b585de8033522ff6a7c8496e98;p=thirdparty%2Ftar.git Bugfix * src/sparse.c (sparse_diff_file): Fix return value. --- diff --git a/src/sparse.c b/src/sparse.c index 08ddb648..e60b16ad 100644 --- a/src/sparse.c +++ b/src/sparse.c @@ -702,7 +702,7 @@ sparse_diff_file (int fd, struct tar_stat_info *st) off_t offset = 0; if (!tar_sparse_init (&file)) - return dump_status_not_implemented; + return false; file.stat_info = st; file.fd = fd;