From 08426783bf981d9fc2b20f9c5a606062262cc400 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 28 Nov 2001 13:53:00 +0000 Subject: gr_mem in getgrent is space separated, not comma separated --- perl-install/standalone/fileshareset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/standalone/fileshareset') diff --git a/perl-install/standalone/fileshareset b/perl-install/standalone/fileshareset index 9e0e993ea..76a64ac17 100755 --- a/perl-install/standalone/fileshareset +++ b/perl-install/standalone/fileshareset @@ -145,7 +145,7 @@ sub check { while (@l = getgrent) { last if $l[0] eq $authorisation_group; } - ::member($username, split(',', $l[3])) or ::error($non_authorised); + ::member($username, split(' ', $l[3])) or ::error($non_authorised); } } -- cgit v1.2.1