diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-25 14:40:04 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-25 14:40:04 +0000 |
commit | d86c912654a50b818f39087f56ddd81668169e37 (patch) | |
tree | 8a052878e66365fe9a63f40a54e08e67f57e48c9 /cpp/src/Ice/SslConnectionOpenSSL.cpp | |
parent | Whoops, left some debugging code in place. Removed. (diff) | |
download | ice-d86c912654a50b818f39087f56ddd81668169e37.tar.bz2 ice-d86c912654a50b818f39087f56ddd81668169e37.tar.xz ice-d86c912654a50b818f39087f56ddd81668169e37.zip |
Minor mods, style mostly, some std::flush's added to the end of pertinent
lines.
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSL.cpp')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSL.cpp b/cpp/src/Ice/SslConnectionOpenSSL.cpp index 37e59503b13..cb4c9219717 100644 --- a/cpp/src/Ice/SslConnectionOpenSSL.cpp +++ b/cpp/src/Ice/SslConnectionOpenSSL.cpp @@ -641,7 +641,7 @@ IceSSL::OpenSSL::Connection::addConnection(SSL* sslPtr, Connection* connection) assert(sslPtr); assert(connection); IceUtil::Mutex::Lock sync(_connectionRepositoryMutex); - _connectionMap[sslPtr] = connection; + _connectionMap[sslPtr] = connection;
} void |