diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-03-08 19:35:03 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-03-08 19:35:03 +0700 |
commit | a09bc4ee9aacb569834c18ef81c476dfa70049f9 (patch) | |
tree | 0c22fd4b19925cecb31644f9010f906e818e513a /crypto | |
parent | Port of some of the TLS tests from Java (diff) | |
download | BouncyCastle.NET-ed25519-a09bc4ee9aacb569834c18ef81c476dfa70049f9.tar.xz |
Add explicit delegate type to keep .NET 1.1 happy
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/test/src/crypto/tls/test/TlsProtocolTest.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs b/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs index 4c49420c6..ba5b90c75 100644 --- a/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs +++ b/crypto/test/src/crypto/tls/test/TlsProtocolTest.cs @@ -26,7 +26,7 @@ namespace Org.BouncyCastle.Crypto.Tls.Tests Server server = new Server(serverProtocol); - Thread serverThread = new Thread(server.Run); + Thread serverThread = new Thread(new ThreadStart(server.Run)); serverThread.Start(); MockTlsClient client = new MockTlsClient(null); |