summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-01-04 19:33:01 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-01-04 19:33:01 +0000
commit119e912a8340e1ca869c415bc3b374a0ceaecd81 (patch)
treef77e5448dff5dac91f5235bca98961418037673c /ssl/d1_pkt.c
parentf4a4a0fdc7843c927f23113771e8cdbf4d05089a (diff)
Since DTLS 1.0 is based on TLS 1.1 we should never return a decryption_failed
alert.
Diffstat (limited to 'ssl/d1_pkt.c')
-rw-r--r--ssl/d1_pkt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index 3f19077af1..b840a15a12 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -374,7 +374,8 @@ dtls1_process_record(SSL *s)
goto err;
/* otherwise enc_err == -1 */
- goto err;
+ al=SSL_AD_BAD_RECORD_MAC;
+ goto f_err;
}
#ifdef TLS_DEBUG