summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/fileshareset
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-11-28 13:53:00 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-11-28 13:53:00 +0000
commit08426783bf981d9fc2b20f9c5a606062262cc400 (patch)
tree8d677f6856b9823e552257e133854d2b2f4cc44e /perl-install/standalone/fileshareset
parent678c180cf323a3c8c81935bc0ae92d39dad91db8 (diff)
downloaddrakx-08426783bf981d9fc2b20f9c5a606062262cc400.tar
drakx-08426783bf981d9fc2b20f9c5a606062262cc400.tar.gz
drakx-08426783bf981d9fc2b20f9c5a606062262cc400.tar.bz2
drakx-08426783bf981d9fc2b20f9c5a606062262cc400.tar.xz
drakx-08426783bf981d9fc2b20f9c5a606062262cc400.zip
gr_mem in getgrent is space separated, not comma separated
Diffstat (limited to 'perl-install/standalone/fileshareset')
-rwxr-xr-xperl-install/standalone/fileshareset2
1 files changed, 1 insertions, 1 deletions
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);
}
}