diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-30 13:12:56 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-30 13:12:56 +0000 |
commit | 31f6d95f43b7d334bf1f248adc10ab846816c1af (patch) | |
tree | 2c88c873d8ce88faceaac32192fae9f702b83b82 /cpp/test/Glacier2/ssl/Server.cpp | |
parent | Windows edits (diff) | |
download | ice-31f6d95f43b7d334bf1f248adc10ab846816c1af.tar.bz2 ice-31f6d95f43b7d334bf1f248adc10ab846816c1af.tar.xz ice-31f6d95f43b7d334bf1f248adc10ab846816c1af.zip |
Fixed compile error
Diffstat (limited to 'cpp/test/Glacier2/ssl/Server.cpp')
-rwxr-xr-x | cpp/test/Glacier2/ssl/Server.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/Glacier2/ssl/Server.cpp b/cpp/test/Glacier2/ssl/Server.cpp index dc87ac91226..185a9356a45 100755 --- a/cpp/test/Glacier2/ssl/Server.cpp +++ b/cpp/test/Glacier2/ssl/Server.cpp @@ -50,7 +50,8 @@ public: // if(_ssl) { - assert(current.ctx.at("SSL.Active") == "1"); + Ice::Context::const_iterator p = current.ctx.find("SSL.Active"); + assert(p != current.ctx.end() && p->second == "1"); } current.adapter->remove(current.id); |