diff options
| author | fukachan <fukachan> | 2001-01-20 03:35:49 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-01-20 03:35:49 +0000 |
| commit | a1c5b8564b06417ab12cf653df77fc3c53b32646 (patch) | |
| tree | 6de6eec6ab065e0b41c2b7015f465839b72b4d9c /fml/lib/IO | |
| parent | 8572127815471c696b1ce7965ade9a6d6cfb3b07 (diff) | |
| download | fml8-a1c5b8564b06417ab12cf653df77fc3c53b32646.tar.gz fml8-a1c5b8564b06417ab12cf653df77fc3c53b32646.tar.bz2 fml8-a1c5b8564b06417ab12cf653df77fc3c53b32646.zip | |
modify my() around
Diffstat (limited to 'fml/lib/IO')
| -rw-r--r-- | fml/lib/IO/MapAdapter.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/IO/MapAdapter.pm b/fml/lib/IO/MapAdapter.pm index 1be0d988..184b0e51 100644 --- a/fml/lib/IO/MapAdapter.pm +++ b/fml/lib/IO/MapAdapter.pm @@ -99,8 +99,8 @@ sub open } } elsif ($self->{'_type'} eq 'unix.group') { - my @x = getgrnam( $self->{_name} ); - my @members = split ' ', $x[3]; + my (@x) = getgrnam( $self->{_name} ); + my (@members) = split ' ', $x[3]; $self->{_members} = \@members; $self->{_num_members} = $#members; $self->{_counter} = 0; |
