summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-07-30 11:14:44 +0100
committerMatt Caswell <matt@openssl.org>2015-08-03 11:18:06 +0100
commit496dbe1855b486c39f42d673d56924d5f9ae3c78 (patch)
treef40bab396092d262dc2c1d8de3107fade7b151ad /ssl
parente9f6b9a1a5ba9feaeeef88d9f45508996ce43468 (diff)
Fix make errors for the CCS changes
The move of CCS into the state machine was causing make errors to fail. This fixes it. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_both.c b/ssl/d1_both.c
index e097de4671..ec47b94c75 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -882,7 +882,7 @@ dtls1_get_message_fragment(SSL *s, int st1, int stn, int mt, long max, int *ok)
if(mt == SSL3_MT_CHANGE_CIPHER_SPEC) {
if (wire[0] != SSL3_MT_CCS) {
al = SSL_AD_UNEXPECTED_MESSAGE;
- SSLerr(SSL_F_SSL3_GET_MESSAGE, SSL_R_BAD_CHANGE_CIPHER_SPEC);
+ SSLerr(SSL_F_DTLS1_GET_MESSAGE_FRAGMENT, SSL_R_BAD_CHANGE_CIPHER_SPEC);
goto f_err;
}