diff options
Diffstat (limited to 'libarchive/archive_read.3')
-rw-r--r-- | libarchive/archive_read.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libarchive/archive_read.3 b/libarchive/archive_read.3 index a29cc1e..d37e732 100644 --- a/libarchive/archive_read.3 +++ b/libarchive/archive_read.3 @@ -130,7 +130,7 @@ which provides a slightly more efficient interface. You may prefer to use the higher-level .Fn archive_read_data_skip , which reads and discards the data for this entry, -.Fn archive_read_data_to_file , +.Fn archive_read_data_into_fd , which copies the data to the provided file descriptor, or .Fn archive_read_extract , which recreates the specified entry on disk and copies data @@ -186,7 +186,7 @@ list_archive(const char *name) free(mydata); } -ssize_t +la_ssize_t myread(struct archive *a, void *client_data, const void **buff) { struct mydata *mydata = client_data; |