summaryrefslogtreecommitdiff
path: root/fml/lib/IO
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-20 03:35:49 +0000
committerfukachan <fukachan>2001-01-20 03:35:49 +0000
commita1c5b8564b06417ab12cf653df77fc3c53b32646 (patch)
tree6de6eec6ab065e0b41c2b7015f465839b72b4d9c /fml/lib/IO
parent8572127815471c696b1ce7965ade9a6d6cfb3b07 (diff)
downloadfml8-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.pm4
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;