From 690604d79a5e8f35f6e39c0154cb6fdd3f211adf Mon Sep 17 00:00:00 2001 From: Sitaram Chamarty Date: Sat, 13 Feb 2010 20:00:45 +0530 Subject: [PATCH] compile: users and repos have groups... why not refs? this came up in some other discussion with bremner. As usual I said no I won't do it because I don't see any real need. ...then I realised it's just one line :) --- src/gl-compile-conf | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gl-compile-conf b/src/gl-compile-conf index 6a02107..371e912 100755 --- a/src/gl-compile-conf +++ b/src/gl-compile-conf @@ -206,6 +206,7 @@ sub parse_conf_file { my $perms = $1; my @refs; @refs = split(' ', $2) if $2; + @refs = expand_list ( @refs ); my @users = split ' ', $3; die "wildrepos disabled, cant use 'C' in config\n" if $perms eq 'C' and not $GL_WILDREPOS;