Skip to content
Snippets Groups Projects
Commit 64b93f57 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Fixed typo : should be @

parent 949d2644
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ my $hostSpec = shift(@ARGV) // ""; ...@@ -85,7 +85,7 @@ my $hostSpec = shift(@ARGV) // "";
my ($loginHost,$loginPort) = split(':',$hostSpec); my ($loginHost,$loginPort) = split(':',$hostSpec);
if (defined($loginHost)) { if (defined($loginHost)) {
# Suck in username if specified # Suck in username if specified
my ($userBit,$hostBit) = split(':',$loginHost); my ($userBit,$hostBit) = split('@',$loginHost);
if (defined($hostBit)) { if (defined($hostBit)) {
$loginUsername = $userBit; $loginUsername = $userBit;
$loginHost = $hostBit; $loginHost = $hostBit;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment