aboutsummaryrefslogtreecommitdiff
path: root/lib/libarchive/archive_entry_strmode.c
Commit message (Collapse)AuthorAgeFilesLines
* Use contrib sources for building libarchive, tar and cpio.Martin Matuska2011-12-221-87/+0
| | | | | | | | | Make "make test" fully operational. MFC after: 2 weeks Notes: svn path=/head/; revision=228797
* Mark hardlinks that lack any other interesting filetype informationTim Kientzle2008-06-151-0/+5
| | | | | | | with an 'h'. Notes: svn path=/head/; revision=179793
* We only use the string "?rwxrwxrwx " once, so inline it rather thanColin Percival2008-05-231-2/+1
| | | | | | | | | declaring a variable which points to it. Aside from eliminating a line of code and one level of unnecessary indirection, this eliminates a false positive in Coverity. Notes: svn path=/head/; revision=179234
* Portability: Since the values are fixed and the symbolic namesTim Kientzle2008-02-191-3/+3
| | | | | | | are only present on some platforms, just use the values directly. Notes: svn path=/head/; revision=176400
* Update libarchive to 2.4.10. This includes a number of improvementsTim Kientzle2007-12-301-0/+83
that I've been working on but put off committing until after the RELENG_7 branch, including: * New manpages: cpio.5 mtree.5 * New archive_entry_strmode() * New archive_entry_link_resolver() * New read support: mtree format * Internal API change: read format auction only runs once * Running the auction only once allowed simplifying a lot of bid logic. * Cpio robustness: search for next header after a sync error * Support device nodes on ISO9660 images * Eliminate a lot of unnecessary copies for uncompressed archives * Corrected handling of new GNU --sparse --posix formats * Correctly handle a zero-byte write to a compressed archive * Fixed memory leaks Many of these improvements were motivated by the upcoming bsdcpio front-end. There have also been extensive improvements to the libarchive_test test harness, which I'll commit separately. Notes: svn path=/head/; revision=174991