mirror of
https://github.com/webmin/webmin.git
synced 2026-03-20 08:40:24 +00:00
Fix to use backquote_command instead
This commit is contained in:
@@ -10682,7 +10682,8 @@ elsif (defined($main::open_tempfiles{$_[0]})) {
|
||||
if ($getfacl && $setfacl) {
|
||||
# Set original ACLs
|
||||
my $qaclfile = quotemeta($_[0]);
|
||||
$file_acls = `$getfacl --absolute-names $qaclfile`;
|
||||
$file_acls = &backquote_command(
|
||||
"$getfacl --absolute-names $qaclfile 2>/dev/null");
|
||||
}
|
||||
# Get status info for a file
|
||||
my @st = stat($_[0]);
|
||||
|
||||
Reference in New Issue
Block a user