diff options
author | Martin Matuska <mm@FreeBSD.org> | 2016-12-30 01:27:27 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2016-12-30 01:27:27 +0000 |
commit | dc8e86c53b2b64153a65a95fc8d0ac06c7e08f9a (patch) | |
tree | eb0dc6939db602762104f47188462fb878a2f4f5 /libarchive/archive_entry_locale.h | |
parent | cda329a1ca4579ea4cef22edbcc299737dd8cb76 (diff) | |
download | src-dc8e86c53b2b64153a65a95fc8d0ac06c7e08f9a.tar.gz src-dc8e86c53b2b64153a65a95fc8d0ac06c7e08f9a.zip |
Notes
Diffstat (limited to 'libarchive/archive_entry_locale.h')
-rw-r--r-- | libarchive/archive_entry_locale.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libarchive/archive_entry_locale.h b/libarchive/archive_entry_locale.h index 02e024ae20c1..c7c90088822d 100644 --- a/libarchive/archive_entry_locale.h +++ b/libarchive/archive_entry_locale.h @@ -63,9 +63,14 @@ int _archive_entry_uname_l(struct archive_entry *, const char **, size_t *, struct archive_string_conv *); #define archive_entry_acl_text_l _archive_entry_acl_text_l int _archive_entry_acl_text_l(struct archive_entry *, int, - const char **, size_t *, struct archive_string_conv *); - - +const char **, size_t *, struct archive_string_conv *) +__attribute__ ((deprecated)); +#define archive_entry_acl_to_text_l _archive_entry_acl_to_text_l +char *_archive_entry_acl_to_text_l(struct archive_entry *, ssize_t *, int, + struct archive_string_conv *); +#define archive_entry_acl_from_text_l _archive_entry_acl_from_text_l +int _archive_entry_acl_from_text_l(struct archive_entry *, const char* text, + int type, struct archive_string_conv *); #define archive_entry_copy_gname_l _archive_entry_copy_gname_l int _archive_entry_copy_gname_l(struct archive_entry *, const char *, size_t, struct archive_string_conv *); |