diff options
author | ZeroC Staff <git@zeroc.com> | 2007-11-21 22:33:27 -0500 |
---|---|---|
committer | ZeroC Staff <git@zeroc.com> | 2007-11-21 22:33:27 -0500 |
commit | f419abacd263d1f7e648e5f49c72f999424ff03f (patch) | |
tree | 0c1da545305db95281266f23f0b39c3f3584c6cd /cpp/src/IceGrid/AdminI.cpp | |
parent | Refactored server-properties access/retrieval from IceGrid admin client (diff) | |
download | ice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.bz2 ice-f419abacd263d1f7e648e5f49c72f999424ff03f.tar.xz ice-f419abacd263d1f7e648e5f49c72f999424ff03f.zip |
Fixed VC6 build failures
Diffstat (limited to 'cpp/src/IceGrid/AdminI.cpp')
-rw-r--r-- | cpp/src/IceGrid/AdminI.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/AdminI.cpp b/cpp/src/IceGrid/AdminI.cpp index 64bd7cb81b7..92913149d43 100644 --- a/cpp/src/IceGrid/AdminI.cpp +++ b/cpp/src/IceGrid/AdminI.cpp @@ -376,7 +376,9 @@ AdminI::getServerProperties(const string& id, const Current&) const Ice::ObjectPrx AdminI::getServerAdmin(const string& id, const Current& current) const { - Ice::Identity adminId = { id, _registry->getServerAdminCategory() }; + Ice::Identity adminId; + adminId.name = id; + adminId.category =_registry->getServerAdminCategory(); return current.adapter->createProxy(adminId); } |