aboutsummaryrefslogtreecommitdiff
path: root/lib/libarchive/archive_entry.h
diff options
context:
space:
mode:
authorTim Kientzle <kientzle@FreeBSD.org>2005-03-13 02:53:42 +0000
committerTim Kientzle <kientzle@FreeBSD.org>2005-03-13 02:53:42 +0000
commit236d2801ad7127360de1bb809fe79b5b5f21361b (patch)
tree4c9ecd42c1869019e457d6081215cc5c8a55edeb /lib/libarchive/archive_entry.h
parent40be948e7a024ae4886eab8e00d8ca8e60c8c0bf (diff)
Support extracting entries with pathnames longer than PATH_MAX. In
testing, I've archived and restored dir trees with ~1MB pathnames. Most formats, of course, have much smaller limits.
Notes
Notes: svn path=/head/; revision=143484
Diffstat (limited to 'lib/libarchive/archive_entry.h')
-rw-r--r--lib/libarchive/archive_entry.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libarchive/archive_entry.h b/lib/libarchive/archive_entry.h
index e5bdaf645a3c..2f67c8afa0e0 100644
--- a/lib/libarchive/archive_entry.h
+++ b/lib/libarchive/archive_entry.h
@@ -112,6 +112,7 @@ void archive_entry_set_link(struct archive_entry *, const char *);
void archive_entry_set_mode(struct archive_entry *, mode_t);
void archive_entry_set_mtime(struct archive_entry *, time_t, long);
void archive_entry_set_pathname(struct archive_entry *, const char *);
+void archive_entry_copy_pathname(struct archive_entry *, const char *);
void archive_entry_copy_pathname_w(struct archive_entry *, const wchar_t *);
void archive_entry_set_rdevmajor(struct archive_entry *, dev_t);
void archive_entry_set_rdevminor(struct archive_entry *, dev_t);