diff options
author | Tim Kientzle <kientzle@FreeBSD.org> | 2007-07-15 19:10:34 +0000 |
---|---|---|
committer | Tim Kientzle <kientzle@FreeBSD.org> | 2007-07-15 19:10:34 +0000 |
commit | 75d0856ca5bd3d33a6a3627d58bd1a3fd73b3a0c (patch) | |
tree | 0a92e6da312e1c5b2f59612c3d02a6373a8e46d8 /lib/libarchive/archive_entry.h | |
parent | 58bdc3275cf6d88f39d5453f2c8fa2adb1481748 (diff) |
Add archive_entry_copy_gname() and archive_entry_copy_uname()
functions.
Approved by: re (bmah)
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=171459
Diffstat (limited to 'lib/libarchive/archive_entry.h')
-rw-r--r-- | lib/libarchive/archive_entry.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libarchive/archive_entry.h b/lib/libarchive/archive_entry.h index 043ddcf6dbc4..2f18d31cac47 100644 --- a/lib/libarchive/archive_entry.h +++ b/lib/libarchive/archive_entry.h @@ -135,6 +135,7 @@ const wchar_t *archive_entry_copy_fflags_text_w(struct archive_entry *, const wchar_t *); void archive_entry_set_gid(struct archive_entry *, gid_t); void archive_entry_set_gname(struct archive_entry *, const char *); +void archive_entry_copy_gname(struct archive_entry *, const char *); void archive_entry_copy_gname_w(struct archive_entry *, const wchar_t *); void archive_entry_set_hardlink(struct archive_entry *, const char *); void archive_entry_copy_hardlink(struct archive_entry *, const char *); @@ -156,6 +157,7 @@ void archive_entry_copy_symlink(struct archive_entry *, const char *); void archive_entry_copy_symlink_w(struct archive_entry *, const wchar_t *); void archive_entry_set_uid(struct archive_entry *, uid_t); void archive_entry_set_uname(struct archive_entry *, const char *); +void archive_entry_copy_uname(struct archive_entry *, const char *); void archive_entry_copy_uname_w(struct archive_entry *, const wchar_t *); /* |