From 8957333dca0c02b00b36e447c81d3246d123bd6d Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Sun, 5 Oct 2025 01:17:28 +0300 Subject: [PATCH] Fix not to quotemeta hardcoded flag #2159 --- filemin/setfacl.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filemin/setfacl.cgi b/filemin/setfacl.cgi index 25ee898d7..9ef2270aa 100755 --- a/filemin/setfacl.cgi +++ b/filemin/setfacl.cgi @@ -50,7 +50,7 @@ if ($action ne '-b' && $action ne '-k') { $types .= " ".join(' ', @extra) ; } } -my $args = quotemeta($action)." ".$types." ".quotemeta($recursive); +my $args = quotemeta($action)." ".$types." ".$recursive; $args =~ s/\s+/ /g; $args = &trim($args); foreach my $file (@files) {