| Commit message (Expand) | Author | Age | Files | Lines |
* | In libarchive: Downgrade ARCHIVE_FATAL and ARCHIVE_FAILED errors which | cperciva | 2007-04-16 | 1 | -0/+6 |
* | Properly cleanup the UID/GID lookup data. | kientzle | 2007-04-15 | 1 | -0/+4 |
* | Don't free a NULL pointer. | kientzle | 2007-04-15 | 1 | -1/+2 |
* | Clean up a lot of memory leaks in the libarchive test harness. | kientzle | 2007-04-15 | 12 | -0/+29 |
* | Thanks to Colin for catching my mixup. The original problem wasn't | kientzle | 2007-04-15 | 1 | -3/+8 |
* | Consolidate numeric limit macros in one place; include them | kientzle | 2007-04-15 | 6 | -49/+44 |
* | Pass through error message if any operation fails, not just the last one. | kientzle | 2007-04-14 | 1 | -1/+1 |
* | Overhaul of 'ar' support: | kientzle | 2007-04-14 | 7 | -228/+235 |
* | Invoke utime(2) properly. (It's only used on platforms | kientzle | 2007-04-14 | 1 | -2/+2 |
* | Fix the build by temporarily disabling 'ar' support until | kientzle | 2007-04-14 | 1 | -1/+0 |
* | Fix the build. | kientzle | 2007-04-14 | 2 | -2/+2 |
* | Fixes from Joerg Sonnenberger, reviewed by Kai Wang. | kientzle | 2007-04-14 | 1 | -49/+81 |
* | Conventionally, tar archives have always included a trailing '/' | kientzle | 2007-04-14 | 5 | -74/+261 |
* | Portability: Don't use mkdtemp() when mkdir() will suffice. | kientzle | 2007-04-14 | 1 | -2/+2 |
* | More portability improvements from Martin Koeppe: | kientzle | 2007-04-14 | 3 | -11/+75 |
* | Portability. | kientzle | 2007-04-13 | 1 | -0/+2 |
* | Now that libarchive is being built in more environments, | kientzle | 2007-04-12 | 2 | -8/+6 |
* | Make Lint happier. | kientzle | 2007-04-12 | 2 | -2/+3 |
* | Fix build on Solaris. | kientzle | 2007-04-07 | 1 | -1/+1 |
* | Enable 'ar' support; hook it up to the build and | kientzle | 2007-04-07 | 3 | -2/+7 |
* | Clarification: Point people to archive_read_data(), which | kientzle | 2007-04-07 | 1 | -1/+4 |
* | When copying data from one archive to another, only set the error | cperciva | 2007-04-07 | 1 | -5/+4 |
* | Move archive_read_data_into_buffer into archive_read.c, simplify its | cperciva | 2007-04-05 | 4 | -55/+23 |
* | More corrections from Joerg Sonnenberger. | kientzle | 2007-04-05 | 1 | -3/+3 |
* | Style fixes from Joerg Sonnenberger: use correct types, | kientzle | 2007-04-05 | 1 | -5/+7 |
* | From Joerg Sonnenberger: Fix a number of style gaffes, | kientzle | 2007-04-05 | 4 | -26/+35 |
* | Wordsmithing. | kientzle | 2007-04-05 | 1 | -12/+9 |
* | Parse SCHILY.dev and SCHILY.ino fields. These are ignored when extracting | cperciva | 2007-04-03 | 1 | -0/+4 |
* | 'ar' format support for libarchive, contributed by Kai Wang. | kientzle | 2007-04-03 | 6 | -0/+1376 |
* | Now that there is always a compression-layer skip function available, | cperciva | 2007-04-02 | 1 | -9/+3 |
* | Fix type-punned pointer, minor style fixes. | kientzle | 2007-04-02 | 1 | -6/+7 |
* | Remove unused variable; use consistent types. | kientzle | 2007-04-02 | 1 | -3/+2 |
* | Be consistent: file flags are unsigned bitmaps. | kientzle | 2007-04-02 | 1 | -1/+1 |
* | Don't compare a signed char to 0xFF. | kientzle | 2007-04-02 | 1 | -3/+3 |
* | Avoid a potential overflow when 'skip' is larger than a pointer. | kientzle | 2007-04-02 | 1 | -1/+1 |
* | Style fix: Use the correct type for 'bytes_to_write'. | kientzle | 2007-04-02 | 1 | -2/+2 |
* | Style: bare "unsigned" is deprecated, use "unsigned int" instead. | kientzle | 2007-04-02 | 2 | -8/+8 |
* | Remove some unused fields from archive_read internal structure. | kientzle | 2007-04-02 | 1 | -5/+1 |
* | Provide a dummy compression-layer skip function which just reads data and | cperciva | 2007-03-31 | 3 | -34/+44 |
* | Notice when mkdir() fails. | kientzle | 2007-03-24 | 3 | -11/+73 |
* | Fix compile error when libbz2 is unavailable. | kientzle | 2007-03-24 | 1 | -1/+1 |
* | Don't forget to increment the raw_position (bytes written) counter, even | cperciva | 2007-03-17 | 1 | -0/+1 |
* | When ARCHIVE_EXTRACT_UNLINK is requested: | kientzle | 2007-03-13 | 2 | -5/+11 |
* | Libarchive 2.0.23: | kientzle | 2007-03-11 | 7 | -157/+145 |
* | New tests for system-independent ACL support. | kientzle | 2007-03-08 | 3 | -0/+744 |
* | Distinguish between the end of ACL data and an error in pulling | kientzle | 2007-03-08 | 1 | -1/+1 |
* | libarchive 2.0 | kientzle | 2007-03-03 | 72 | -2434/+7206 |
* | Force the umask to something predictable while creating objects | kientzle | 2007-03-02 | 1 | -1/+2 |
* | Because the buffer gets released immediately, I need to | kientzle | 2007-03-01 | 3 | -1/+8 |
* | If (a == NULL), don't dereference (a) to record an error message. [1] | cperciva | 2007-02-05 | 2 | -4/+7 |