summaryrefslogtreecommitdiff
path: root/fml
diff options
context:
space:
mode:
Diffstat (limited to 'fml')
-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;