summaryrefslogtreecommitdiffstats
path: root/freebsd/crypto/openssl/ssl/d1_pkt.c
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/crypto/openssl/ssl/d1_pkt.c')
-rw-r--r--freebsd/crypto/openssl/ssl/d1_pkt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/freebsd/crypto/openssl/ssl/d1_pkt.c b/freebsd/crypto/openssl/ssl/d1_pkt.c
index b09e3797..a2647e79 100644
--- a/freebsd/crypto/openssl/ssl/d1_pkt.c
+++ b/freebsd/crypto/openssl/ssl/d1_pkt.c
@@ -1325,9 +1325,9 @@ int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
/* XDTLS: check that epoch is consistent */
if ((rr->length != ccs_hdr_len) ||
(rr->off != 0) || (rr->data[0] != SSL3_MT_CCS)) {
- i = SSL_AD_ILLEGAL_PARAMETER;
+ al = SSL_AD_ILLEGAL_PARAMETER;
SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_BAD_CHANGE_CIPHER_SPEC);
- goto err;
+ goto f_err;
}
rr->length = 0;