diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-10-01 08:56:51 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-10-01 08:56:51 +0200 |
commit | c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b (patch) | |
tree | 7246034c07941250d3cb997f6ee1ab0c1834dc01 | |
parent | IceGridGUI updates: (diff) | |
download | ice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.tar.bz2 ice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.tar.xz ice-c1a27a40bb5c7fe6f953cd3b51198d6e93b81b1b.zip |
Fixed icegridadmin client default SSL port number for IceGrid
-rw-r--r-- | cpp/src/IceGrid/Client.cpp | 2 |
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 { |