iwla_convert : Skip empty values or empty keys in hashes
This commit is contained in:
parent
8255be7ec8
commit
f8a8cb26fb
|
@ -38,7 +38,7 @@ sub dumpHash {
|
||||||
while( my ($k,$v) = each(%hash) ) {
|
while( my ($k,$v) = each(%hash) ) {
|
||||||
$k =~ s/\'/\\\'/g;
|
$k =~ s/\'/\\\'/g;
|
||||||
$v =~ s/\'/\\\'/g;
|
$v =~ s/\'/\\\'/g;
|
||||||
next if ($k == "" || $v == "");
|
next if ($k eq "" || $v eq "");
|
||||||
if ($first == 0)
|
if ($first == 0)
|
||||||
{
|
{
|
||||||
print $FIC ", ";
|
print $FIC ", ";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user