remove spaces from network address given as argument to --connect
This commit is contained in:
parent
94055a817b
commit
ba14dbcd98
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ int main ( int argc, char** argv )
|
|||
"--connect",
|
||||
strArgument ) )
|
||||
{
|
||||
strConnOnStartupAddress = strArgument;
|
||||
strConnOnStartupAddress = strArgument.simplified().replace( " ", "" );
|
||||
tsConsole << "- connect on startup to address: " << strConnOnStartupAddress << endl;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue