diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-11-02 15:37:50 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-11-02 18:15:04 +0100 |
commit | 6e36266cec43aac8bb22457428343fcbd523f108 (patch) | |
tree | dca106a4c9781146810943274f70f6aa1259e119 /support | |
parent | 599f7beee7f693926dc2775dc5054007c96b7b74 (diff) | |
download | glibc-6e36266cec43aac8bb22457428343fcbd523f108.tar.gz glibc-6e36266cec43aac8bb22457428343fcbd523f108.tar.xz glibc-6e36266cec43aac8bb22457428343fcbd523f108.zip |
support/shell-container.c: Use support_copy_file_range
Reviewed-by: DJ Delorie <dj@redhat.com>
Diffstat (limited to 'support')
-rw-r--r-- | support/shell-container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/shell-container.c b/support/shell-container.c index d303131daf..9bd90d3f60 100644 --- a/support/shell-container.c +++ b/support/shell-container.c @@ -119,7 +119,7 @@ copy_func (char **argv) return 1; } - if (copy_file_range (sfd, 0, dfd, 0, st.st_size, 0) != st.st_size) + if (support_copy_file_range (sfd, 0, dfd, 0, st.st_size, 0) != st.st_size) { fprintf (stderr, "cp: cannot copy file %s to %s: %s\n", sname, dname, strerror (errno)); |