diff --git a/report_acl.pl b/report_acl.pl index f2234b7..9239526 100644 --- a/report_acl.pl +++ b/report_acl.pl @@ -104,9 +104,9 @@ foreach my $share ($a->get_all_by_prop(type => 'share')) { my @list_ro_uniq = uniq(@list_ro); print "^ " . $name . " | "; - foreach (@list_rw_uniq) { print "$_ "; } + foreach (@list_rw_uniq) { print "$_, "; } print " | "; - foreach (@list_ro_uniq) { print "$_ "; } + foreach (@list_ro_uniq) { print "$_, "; } print " |" . "\n"; }