From f907a7f6178c0819ab368bb087476c5735824fba Mon Sep 17 00:00:00 2001 From: Jean Flach Date: Thu, 30 Apr 2015 12:52:35 +0200 Subject: [PATCH] Fix Port wrong default port in Node Wizard fixes #9205 --- lib/cli/nodewizardcommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cli/nodewizardcommand.cpp b/lib/cli/nodewizardcommand.cpp index 3d5e60035..5d0566db4 100644 --- a/lib/cli/nodewizardcommand.cpp +++ b/lib/cli/nodewizardcommand.cpp @@ -170,7 +170,7 @@ wizard_endpoint_loop_start: Log(LogWarning, "cli", "Node to master connection setup skipped"); std::cout << "Connection setup skipped. Please configure your master to connect to this node.\n"; } else { - std::cout << ConsoleColorTag(Console_Bold) << "Please fill out the master connection information:" << ConsoleColorTag(Console_Normal) << "\n"; + std::cout << ConsoleColorTag(Console_Bold) << "Please fill out the master connection information:" << ConsoleColorTag(Console_Normal) << "\n"; std::cout << ConsoleColorTag(Console_Bold) << "Master endpoint host" << ConsoleColorTag(Console_Normal) << " (Your master's IP address or FQDN): "; std::getline(std::cin, answer); @@ -197,7 +197,7 @@ wizard_endpoint_loop_start: tmp = "5665"; tmp.Trim(); - endpoint_buffer += "," + answer; + endpoint_buffer += "," + tmp; } endpoints.push_back(endpoint_buffer); -- 2.40.0