summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/ext_signature.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/ext_signature.c b/lib/ext_signature.c
index 828c006d32..fec09df710 100644
--- a/lib/ext_signature.c
+++ b/lib/ext_signature.c
@@ -216,7 +216,11 @@ _gnutls_signature_algorithm_recv_params (gnutls_session_t session,
{
/* nothing for now */
gnutls_assert ();
- return GNUTLS_E_UNEXPECTED_PACKET;
+ /* Although TLS 1.2 mandates that we must not accept reply
+ * to this message, there are good reasons to just ignore it. Check
+ * http://www.ietf.org/mail-archive/web/tls/current/msg03880.html
+ */
+ /* return GNUTLS_E_UNEXPECTED_PACKET; */
}
else
{