diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-09-23 13:11:52 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-09-23 13:11:52 -0700 |
commit | ead201eb9cedd9ce67c56e532a7409183ea0f5a1 (patch) | |
tree | fb56b5a777b8472340fb35473cc019f757c5494c /cpp/src/IceGrid/Client.cpp | |
parent | ICE-5526 multicast demo not working on OSX 10.9 (diff) | |
download | ice-ead201eb9cedd9ce67c56e532a7409183ea0f5a1.tar.bz2 ice-ead201eb9cedd9ce67c56e532a7409183ea0f5a1.tar.xz ice-ead201eb9cedd9ce67c56e532a7409183ea0f5a1.zip |
bug fix in IceGrid admin client
Diffstat (limited to 'cpp/src/IceGrid/Client.cpp')
-rw-r--r-- | cpp/src/IceGrid/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/Client.cpp b/cpp/src/IceGrid/Client.cpp index 6ff2d21547b..cea70df6b72 100644 --- a/cpp/src/IceGrid/Client.cpp +++ b/cpp/src/IceGrid/Client.cpp @@ -489,7 +489,7 @@ Client::run(StringSeq& originalArgs) host = opts.optArg("host"); } - string instanceName = communicator()->getProperties()->getProperty("IceGridAdmin.InstaceName"); + string instanceName = communicator()->getProperties()->getProperty("IceGridAdmin.InstanceName"); if(!opts.optArg("instanceName").empty()) { instanceName = opts.optArg("instanceName"); @@ -800,7 +800,7 @@ Client::run(StringSeq& originalArgs) else { // - // If we can't contact the master, use to the local registry. + // If we can't contact the master, use the local registry. // registry = localRegistry; string name = registry->ice_getIdentity().name; |