aboutsummaryrefslogtreecommitdiff
path: root/lib/GitACL.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/GitACL.pm')
-rw-r--r--lib/GitACL.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/GitACL.pm b/lib/GitACL.pm
index 4214b3f..d3f6b35 100644
--- a/lib/GitACL.pm
+++ b/lib/GitACL.pm
@@ -162,7 +162,7 @@ sub match_tuple($$) {
unless ($x[0] eq 'allow' || $x[0] eq 'deny');
return ( 0, "project mismatch" )
- if ($x[1] ne "*" and $x[1] ne $self->{project_name});
+ if ($x[1] ne "all" and $x[1] ne $self->{project_name});
return ( 0, "user mismatch" )
unless $self->match_user($x[2]);
return ( 0, "op mismatch" )

Return to:

Send suggestions and report system problems to the System administrator.