From c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Wed, 1 Oct 2014 08:56:51 +0200 Subject: Fixed icegridadmin client default SSL port number for IceGrid --- cpp/src/IceGrid/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp') diff --git a/cpp/src/IceGrid/Client.cpp b/cpp/src/IceGrid/Client.cpp index cea70df6b72..6e9b51388e2 100644 --- a/cpp/src/IceGrid/Client.cpp +++ b/cpp/src/IceGrid/Client.cpp @@ -529,7 +529,7 @@ Client::run(StringSeq& originalArgs) ostringstream os; os << "Ice/LocatorFinder" << (ssl ? " -s" : ""); os << ":tcp -h \"" << host << "\" -p " << (port == 0 ? 4061 : port) << " -t " << timeout; - os << ":ssl -h \"" << host << "\" -p " << (port == 0 ? 4063 : port) << " -t " << timeout; + os << ":ssl -h \"" << host << "\" -p " << (port == 0 ? 4062 : port) << " -t " << timeout; LocatorFinderPrx finder = LocatorFinderPrx::uncheckedCast(communicator()->stringToProxy(os.str())); try { -- cgit v1.2.3