diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-02-12 15:42:28 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-02-12 15:42:28 +0100 |
commit | f7a30fddcd87f7e1c135d6b5bfc72af268f7e936 (patch) | |
tree | 0464c5412c2e7f53058e7ee232739da1d8908701 /cpp/src | |
parent | Fixed WinRT dependencies and Ice build issue (diff) | |
download | ice-f7a30fddcd87f7e1c135d6b5bfc72af268f7e936.tar.bz2 ice-f7a30fddcd87f7e1c135d6b5bfc72af268f7e936.tar.xz ice-f7a30fddcd87f7e1c135d6b5bfc72af268f7e936.zip |
Fixed ICE-5220: connection warnings with adapterDeactivation test and SSL
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/ConnectionFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.cpp b/cpp/src/Ice/ConnectionFactory.cpp index 723d0b87652..45f2cc76e37 100644 --- a/cpp/src/Ice/ConnectionFactory.cpp +++ b/cpp/src/Ice/ConnectionFactory.cpp @@ -1539,7 +1539,7 @@ IceInternal::IncomingConnectionFactory::connectionStartFailed(const Ice::Connect return; } - if(_warn) + if(_warn && !dynamic_cast<const Ice::SocketException*>(&ex)) { Warning out(_instance->initializationData().logger); out << "connection exception:\n" << ex << '\n' << _acceptor->toString(); |