diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-06 11:54:56 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-11-06 11:56:02 +0100 |
commit | 4d46b361ff1371a6f3f4f89ed8ca81ee23e86de8 (patch) | |
tree | 0705d7c216ea345665cd38345bc21f8931195849 /include | |
parent | 3afffc2a59cfc3888a84b2b2305b5312393ff4e8 (diff) |
Remove raw file descriptors from tar read path
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r-- | include/tar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tar.h b/include/tar.h index 8f9f55c..dacea42 100644 --- a/include/tar.h +++ b/include/tar.h @@ -124,12 +124,12 @@ int write_tar_header(FILE *fp, const struct stat *sb, const char *name, unsigned int counter); /* calcuate and skip the zero padding */ -int skip_padding(int fd, sqfs_u64 size); +int skip_padding(FILE *fp, sqfs_u64 size); /* round up to block size and skip the entire entry */ -int skip_entry(int fd, sqfs_u64 size); +int skip_entry(FILE *fp, sqfs_u64 size); -int read_header(int fd, tar_header_decoded_t *out); +int read_header(FILE *fp, tar_header_decoded_t *out); void clear_header(tar_header_decoded_t *hdr); @@ -146,7 +146,7 @@ int padd_file(FILE *fp, sqfs_u64 size); on success. Writes to stderr on failure using 'errstr' as a perror style error prefix. */ -int read_retry(const char *errstr, int fd, void *buffer, size_t size); +int read_retry(const char *errstr, FILE *fp, void *buffer, size_t size); /* A wrapper around the write() system call. It retries the write if it is |