From c17cfe6ef7bc1ac4501b5f6e7d4f4efc08aef439 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 13 Feb 2023 21:51:11 +0100 Subject: copy: Make copy_xattr() more generic Let's make copy_xattr() a little more generic in preparation for copying symlink xattrs. --- src/dissect/dissect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dissect') diff --git a/src/dissect/dissect.c b/src/dissect/dissect.c index f435932815..8d3d3712d7 100644 --- a/src/dissect/dissect.c +++ b/src/dissect/dissect.c @@ -1105,7 +1105,7 @@ static int action_list_or_mtree_or_copy(DissectedImage *m, LoopDevice *d) { if (r < 0) return log_error_errno(r, "Failed to copy bytes from %s in mage '%s' to '%s': %m", arg_source, arg_image, arg_target); - (void) copy_xattr(source_fd, target_fd, 0); + (void) copy_xattr(source_fd, NULL, target_fd, NULL, 0); (void) copy_access(source_fd, target_fd); (void) copy_times(source_fd, target_fd, 0); @@ -1182,7 +1182,7 @@ static int action_list_or_mtree_or_copy(DissectedImage *m, LoopDevice *d) { if (r < 0) return log_error_errno(r, "Failed to copy bytes from '%s' to '%s' in image '%s': %m", arg_source, arg_target, arg_image); - (void) copy_xattr(source_fd, target_fd, 0); + (void) copy_xattr(source_fd, NULL, target_fd, NULL, 0); (void) copy_access(source_fd, target_fd); (void) copy_times(source_fd, target_fd, 0); -- cgit v1.2.1