diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-11-28 13:53:00 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-11-28 13:53:00 +0000 |
commit | 08426783bf981d9fc2b20f9c5a606062262cc400 (patch) | |
tree | 8d677f6856b9823e552257e133854d2b2f4cc44e /perl-install | |
parent | 678c180cf323a3c8c81935bc0ae92d39dad91db8 (diff) | |
download | drakx-backup-do-not-use-08426783bf981d9fc2b20f9c5a606062262cc400.tar drakx-backup-do-not-use-08426783bf981d9fc2b20f9c5a606062262cc400.tar.gz drakx-backup-do-not-use-08426783bf981d9fc2b20f9c5a606062262cc400.tar.bz2 drakx-backup-do-not-use-08426783bf981d9fc2b20f9c5a606062262cc400.tar.xz drakx-backup-do-not-use-08426783bf981d9fc2b20f9c5a606062262cc400.zip |
gr_mem in getgrent is space separated, not comma separated
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/fileshareset | 2 |
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); } } |