Subject: | Warnings when blank lines in the hostfile |
If there are empty/blank lines in the ~/known_hosts file, a warning is issued:
Use of uninitialized value in split at C:/Perl/site/lib/Net/SSH/Perl/Util/Hosts.
pm line 30, <FH> line 2.
Proposed fix: add this after the split() on line 22 in Net/SSH/Perl/Util/Hosts.pm;
$hosts && $keyblob or next;
/J