Subject: | Destination can't contain colon ':' |
If the destination contains a colon ':' the split at line 503 (in
_parse_scp_string) breaks the destination in more than one string.
It's easily fixed by adding a limit of 2 to the split call, i.e.
($host,$dest) = split(/:/,$temp,2);