diff options
author | Bodo Möller <bodo@openssl.org> | 2001-03-07 02:19:07 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2001-03-07 02:19:07 +0100 |
commit | 5277d7cb7cdaa45d2fef1ada07af3c26716c7fbe (patch) | |
tree | 6dfa72dac6f9e7e909b20d6ca49dbe1b96fa60dc /ssl/t1_enc.c | |
parent | Implement dispatcher for EC_GROUP and EC_POINT method functions. (diff) | |
download | openssl-5277d7cb7cdaa45d2fef1ada07af3c26716c7fbe.tar.xz openssl-5277d7cb7cdaa45d2fef1ada07af3c26716c7fbe.zip |
Fix ERR_R_... problems.
Diffstat (limited to 'ssl/t1_enc.c')
-rw-r--r-- | ssl/t1_enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c index ae33bda78f..26496d709d 100644 --- a/ssl/t1_enc.c +++ b/ssl/t1_enc.c @@ -290,7 +290,7 @@ int tls1_change_cipher_state(SSL *s, int which) if (n > s->s3->tmp.key_block_length) { - SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,SSL_R_INTERNAL_ERROR); + SSLerr(SSL_F_TLS1_CHANGE_CIPHER_STATE,ERR_R_INTERNAL_ERROR); goto err2; } |