Issue 2: breaking sshhostkeys format
Status:  New
Owner: ----
Reported by roger.da...@gmail.com, Apr 18, 2014
What steps will reproduce the problem?
1. migrating windows host keys

What is the expected output? What do you see instead?
keys don't work (hosts are not recognized)

What version of the product are you using? On what operating system?
5/28/2010

Please provide any additional information below.

patch:

--- pwin2lin.pl.1	2010-06-23 03:44:38.000000000 +0200
+++ pwin2lin.pl	2014-04-18 18:30:04.817950214 +0200
@@ -109,6 +110,7 @@
     open SSH, ">$puttyPath/sshhostkeys" or die $!;
     while($i < $linesLen) {
       chomp($lines[$i]);
+      $lines[$i] =~ s~\"=\"~\" \"~g;
       $lines[$i] =~ s/\"//g;
       print SSH "$lines[$i]\n";
       $i++;