diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-07 14:53:50 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-10-07 14:56:27 +0200 |
commit | 7e1be3986b3b8229f0162431b6e02c24e04a5dba (patch) | |
tree | f427b88a1b5edb35232e0aa72fb7d19b4728cbcd /tests/tar_xattr_bsd.c | |
parent | 267d5318e1cbf69a071b5188dda50310af2f2f8b (diff) |
Cleanup: move read_data function to libtar
Its the only user. The other code doesn't touch raw file
descriptors anymore.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/tar_xattr_bsd.c')
-rw-r--r-- | tests/tar_xattr_bsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tar_xattr_bsd.c b/tests/tar_xattr_bsd.c index 2e9479c..50c0150 100644 --- a/tests/tar_xattr_bsd.c +++ b/tests/tar_xattr_bsd.c @@ -51,7 +51,7 @@ int main(void) assert(hdr.mtime == 1543094477); assert(strcmp(hdr.name, "input.txt") == 0); assert(!hdr.unknown_record); - assert(read_data("data0", fd, buffer, 5) == 0); + assert(read_retry("data0", fd, buffer, 5) == 0); buffer[5] = '\0'; assert(strcmp(buffer, "test\n") == 0); |