iwla_convert : Skip empty values or empty keys in hashes
This commit is contained in:
		| @@ -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 ", "; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user