1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-26 21:57:41 +03:00

selftest: eliminate a perl warning

In perl, %binary_mapping should be initialized as a hash, not a hash reference.
This commit is contained in:
Michael Adam 2011-07-04 10:24:19 +02:00
parent ad4a10dd05
commit 65f4d33d9b

View File

@ -463,7 +463,7 @@ if ($opt_socket_wrapper) {
my $target;
my $testenv_default = "none";
my %binary_mapping = {};
my %binary_mapping = ();
if ($opt_binary_mapping) {
my @binmapping_list = split(/,/, $opt_binary_mapping);
foreach my $mapping (@binmapping_list) {