faked e_index with e_id

This commit is contained in:
Moritz Kraus
2016-09-09 15:59:52 +02:00
parent 1719709648
commit fd3417a09a

View File

@@ -125,7 +125,11 @@ sub b_mac {
sub e_index { sub e_index {
my $self = shift(); my $self = shift();
return $self->e_id; my %index;
foreach my $id ( keys %{$self->e_id} ){
%index->{$id} = $id;
}
return \%index;
} }
1; 1;