diff options
author | kientzle <kientzle@FreeBSD.org> | 2004-04-12 01:16:16 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2004-04-12 01:16:16 +0000 |
commit | 444807bb419cc1185bb2d531a75682c02d185fc1 (patch) | |
tree | 620d152a72f7229f537f8ea04ba7d296fe1e368b /lib/libarchive/archive_write_set_compression_gzip.c | |
parent | cd3b6fa4ace48070f152d7849f93feae16e76cdd (diff) | |
download | FreeBSD-src-444807bb419cc1185bb2d531a75682c02d185fc1.zip FreeBSD-src-444807bb419cc1185bb2d531a75682c02d185fc1.tar.gz |
More work on ACLs: fix error in archive_entry's ACL parsing code,
try to set ACLs even if fflag restore fails, first cut at reading
Solaris tar ACLs
Code improvement: merge gnu tar read support into main tar reader;
this eliminates a lot of duplicate code and generalizes the tar
reader to handle formats with GNU-like extensions.
Style: Makefile cleanup, eliminate 'dmalloc' references, remove 'tartype'
from archive_entry (this makes archive_entry more format-agnostic)
Thanks to: David Magda for providing Solaris tar test files
Diffstat (limited to 'lib/libarchive/archive_write_set_compression_gzip.c')
-rw-r--r-- | lib/libarchive/archive_write_set_compression_gzip.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/libarchive/archive_write_set_compression_gzip.c b/lib/libarchive/archive_write_set_compression_gzip.c index cd44e8e..b09fc2b 100644 --- a/lib/libarchive/archive_write_set_compression_gzip.c +++ b/lib/libarchive/archive_write_set_compression_gzip.c @@ -27,9 +27,6 @@ #include "archive_platform.h" __FBSDID("$FreeBSD$"); -#ifdef HAVE_DMALLOC -#include <dmalloc.h> -#endif #include <errno.h> #include <stdlib.h> #include <string.h> |