Skip to content

Commit

Permalink
Merge pull request #9557 from bryanhonof/bryanhonof.fix-apple-double-…
Browse files Browse the repository at this point in the history
…shenanigans

Add option to libarchive so it behaves correctly
  • Loading branch information
edolstra authored Dec 7, 2023
2 parents 82449a4 + bf00d5e commit c3827ff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/libutil/tarfile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ TarArchive::TarArchive(Source & source, bool raw) : buffer(65536)
archive_read_support_format_raw(archive);
archive_read_support_format_empty(archive);
}
archive_read_set_option(archive, NULL, "mac-ext", NULL);
check(archive_read_open(archive, (void *)this, callback_open, callback_read, callback_close), "Failed to open archive (%s)");
}

Expand All @@ -63,6 +64,7 @@ TarArchive::TarArchive(const Path & path)

archive_read_support_filter_all(archive);
archive_read_support_format_all(archive);
archive_read_set_option(archive, NULL, "mac-ext", NULL);
check(archive_read_open_filename(archive, path.c_str(), 16384), "failed to open archive: %s");
}

Expand Down

0 comments on commit c3827ff

Please sign in to comment.