1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/crypto/tls/TlsClientProtocol.cs b/crypto/src/crypto/tls/TlsClientProtocol.cs
index 24fb3f63d..4e4a7a492 100644
--- a/crypto/src/crypto/tls/TlsClientProtocol.cs
+++ b/crypto/src/crypto/tls/TlsClientProtocol.cs
@@ -427,7 +427,7 @@ namespace Org.BouncyCastle.Crypto.Tls
break;
}
default:
- throw new TlsFatalAlert(AlertDescription.handshake_failure);
+ throw new TlsFatalAlert(AlertDescription.unexpected_message);
}
this.mConnectionState = CS_CLIENT_FINISHED;
|