1
0
Fork 0

Fixed port command line argument. (#3287)

This commit is contained in:
Alexander Harkness 2016-07-30 12:21:11 +01:00 committed by GitHub
parent 8107d5c3ac
commit 62702cab48
1 changed files with 1 additions and 5 deletions

View File

@ -392,7 +392,7 @@ static std::unique_ptr<cMemorySettingsRepository> ParseArguments(int argc, char
{
for (auto port: portsArg.getValue())
{
repo->AddValue("Server", "Port", static_cast<Int64>(port));
repo->AddValue("Server", "Ports", std::to_string(port));
}
}
if (commLogArg.getValue())
@ -555,7 +555,3 @@ int main(int argc, char ** argv)
return EXIT_SUCCESS;
}