summaryrefslogtreecommitdiff
path: root/csharp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-02-22 14:48:21 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-02-22 14:48:21 +0100
commit7c93c219b4af7d5183ca17ad4e1a1d97c53a918d (patch)
treec0a09bce21d07422af0cbff088447d34dc92fb00 /csharp/src
parentBuild C++11 testsuite with VS 2017 RC (diff)
downloadice-7c93c219b4af7d5183ca17ad4e1a1d97c53a918d.tar.bz2
ice-7c93c219b4af7d5183ca17ad4e1a1d97c53a918d.tar.xz
ice-7c93c219b4af7d5183ca17ad4e1a1d97c53a918d.zip
Minor IceSSL fixes
Diffstat (limited to 'csharp/src')
-rw-r--r--csharp/src/IceSSL/TransceiverI.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/IceSSL/TransceiverI.cs b/csharp/src/IceSSL/TransceiverI.cs
index c659d491376..0dbf195c515 100644
--- a/csharp/src/IceSSL/TransceiverI.cs
+++ b/csharp/src/IceSSL/TransceiverI.cs
@@ -563,7 +563,7 @@ namespace IceSSL
message = message + "\nuntrusted root certificate (ignored)";
_verified = false;
}
- errors = (int)SslPolicyErrors.RemoteCertificateChainErrors;
+ errors |= (int)SslPolicyErrors.RemoteCertificateChainErrors;
}
else
{