diff options
Diffstat (limited to 'csharp/src/IceSSL/TrustManager.cs')
-rw-r--r-- | csharp/src/IceSSL/TrustManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/src/IceSSL/TrustManager.cs b/csharp/src/IceSSL/TrustManager.cs index 98697dd0942..e5f69a474c7 100644 --- a/csharp/src/IceSSL/TrustManager.cs +++ b/csharp/src/IceSSL/TrustManager.cs @@ -57,7 +57,7 @@ namespace IceSSL } } - internal bool verify(NativeConnectionInfo info, string desc) + internal bool verify(IceSSL.ConnectionInfo info, string desc) { List<List<List<RFC2253.RDNPair>>> reject = new List<List<List<RFC2253.RDNPair>>>(), accept = new List<List<List<RFC2253.RDNPair>>>(); @@ -127,9 +127,9 @@ namespace IceSSL // // If there is no certificate then we match false. // - if(info.nativeCerts != null && info.nativeCerts.Length > 0) + if(info.certs != null && info.certs.Length > 0) { - X500DistinguishedName subjectDN = info.nativeCerts[0].SubjectName; + X500DistinguishedName subjectDN = info.certs[0].SubjectName; string subjectName = subjectDN.Name; Debug.Assert(subjectName != null); try |