* yield the extra bytes when using gunzip. */
assert((a = archive_read_new()) != NULL);
r = archive_read_support_filter_gzip(a);
- if (r != ARCHIVE_OK && canGunzip())
+ if (r != ARCHIVE_OK && canGzip())
blocksize = 1;
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
/* The compression_gzip() handler will fall back to gunzip
* automatically, but if we know gunzip isn't available, then
* skip the rest. */
- if (r != ARCHIVE_OK && !canGunzip()) {
+ if (r != ARCHIVE_OK && !canGzip()) {
skipping("No libz and no gunzip program, "
"unable to verify gzip compression");
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
* yield the extra bytes when using gunzip. */
assert((a = archive_read_new()) != NULL);
r = archive_read_support_filter_gzip(a);
- if (r != ARCHIVE_OK && canGunzip())
+ if (r != ARCHIVE_OK && canGzip())
blocksize = 1;
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
/* The compression_gzip() handler will fall back to gunzip
* automatically, but if we know gunzip isn't available, then
* skip the rest. */
- if (r != ARCHIVE_OK && !canGunzip()) {
+ if (r != ARCHIVE_OK && !canGzip()) {
skipping("No libz and no gunzip program, "
"unable to verify gzip compression");
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
* yield the extra bytes when using gunzip. */
assert((a = archive_read_new()) != NULL);
r = archive_read_support_filter_gzip(a);
- if (r != ARCHIVE_OK && canGunzip())
+ if (r != ARCHIVE_OK && canGzip())
blocksize = 1;
assertEqualInt(ARCHIVE_OK, archive_read_free(a));
/* The compression_gzip() handler will fall back to gunzip
* automatically, but if we know gunzip isn't available, then
* skip the rest. */
- if (r != ARCHIVE_OK && !canGunzip()) {
+ if (r != ARCHIVE_OK && !canGzip()) {
skipping("No libz and no gunzip program, "
"unable to verify gzip compression");
assertEqualInt(ARCHIVE_OK, archive_read_free(a));