summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Client.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-10-01 08:56:51 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-10-01 08:56:51 +0200
commitc1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b (patch)
tree7246034c07941250d3cb997f6ee1ab0c1834dc01 /cpp/src/IceGrid/Client.cpp
parentIceGridGUI updates: (diff)
downloadice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.tar.bz2
ice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.tar.xz
ice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.zip
Fixed icegridadmin client default SSL port number for IceGrid
Diffstat (limited to 'cpp/src/IceGrid/Client.cpp')
-rw-r--r--cpp/src/IceGrid/Client.cpp2
1 files changed, 1 insertions, 1 deletions
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
{