>From e5e940304ca8b1bc857052e29922b6ef1dd6d752 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sat, 24 Aug 2024 23:59:32 -0700 Subject: [PATCH 2/2] maint: adjust to Gnulib acl changes * src/execute.c (closedown): Use xcopy_acl instead of copy_acl. --- sed/execute.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sed/execute.c b/sed/execute.c index 1d38a5c..6245b3d 100644 --- a/sed/execute.c +++ b/sed/execute.c @@ -664,9 +664,9 @@ closedown (struct input *input) if (fchown (output_fd, input->st.st_uid, input->st.st_gid) == -1) ignore_value (fchown (output_fd, -1, input->st.st_gid)); #endif - copy_acl (input->in_file_name, input_fd, - input->out_file_name, output_fd, - input->st.st_mode); + xcopy_acl (input->in_file_name, input_fd, + input->out_file_name, output_fd, + input->st.st_mode); ck_fclose (input->fp); ck_fclose (output_file.fp); -- 2.46.0