We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e52cbad commit 1d61379Copy full SHA for 1d61379
lib/File/Copy.pm
@@ -5,7 +5,7 @@
5
# Additions copyright 1996 by Charles Bailey. Permission is granted
6
# to distribute the revised code under the same terms as Perl itself.
7
8
-package File::Copy 2.42;
+package File::Copy 2.43;
9
10
use v5.40;
11
no warnings 'newline';
@@ -165,6 +165,11 @@ sub copy {
165
$closeto = 1;
166
}
167
168
+ # Copy file tags on os390
169
+ if ($^O eq 'os390') {
170
+ ZOS::Filespec::copytags_fd(fileno($from_h), fileno($to_h));
171
+ }
172
+
173
$! = 0;
174
for (;;) {
175
my ($r, $w, $t);
0 commit comments