Merge pull request #3144 from Unity-Technologies/fix-recursive-property-call
authorMartin Baulig <martin.baulig@xamarin.com>
Fri, 10 Jun 2016 18:23:35 +0000 (20:23 +0200)
committerGitHub <noreply@github.com>
Fri, 10 Jun 2016 18:23:35 +0000 (20:23 +0200)
Fix recursive property call in MonoSslStreamImpl

mcs/class/System/Mono.Net.Security/MonoSslStreamImpl.cs

index 776751537bdae8df69c5134c20ade5c097c65eb5..f8a83bb6f3b45132e5066093813545f62f9055bb 100644 (file)
@@ -222,7 +222,7 @@ namespace Mono.Net.Security.Private
                }
 
                public int KeyExchangeStrength {
-                       get { return KeyExchangeStrength; }
+                       get { return Impl.KeyExchangeStrength; }
                }
 
                public bool CanRead {