summaryrefslogtreecommitdiffstats
path: root/ssl/s23_clnt.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2006-01-08 19:42:30 +0000
committerBodo Möller <bodo@openssl.org>2006-01-08 19:42:30 +0000
commit739a543ea863682f157e9aa0ee382367eb3d187c (patch)
tree09c0ba1d3dcdf4712b26f1cdf8a7771411b4932c /ssl/s23_clnt.c
parent01c76c6606c51013222626875218e0f1ed5bcc7e (diff)
Some error code cleanups (SSL lib. used SSL_R_... codes reserved for alerts)
Diffstat (limited to 'ssl/s23_clnt.c')
-rw-r--r--ssl/s23_clnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s23_clnt.c b/ssl/s23_clnt.c
index 3bb5adfa48..66ecbc7eed 100644
--- a/ssl/s23_clnt.c
+++ b/ssl/s23_clnt.c
@@ -422,7 +422,7 @@ static int ssl23_client_hello(SSL *s)
#ifndef OPENSSL_NO_TLSEXT
if ((p = ssl_add_clienthello_tlsext(s, p, buf+SSL3_RT_MAX_PLAIN_LENGTH)) == NULL)
{
- SSLerr(SSL_F_SSL3_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
+ SSLerr(SSL_F_SSL23_CLIENT_HELLO,ERR_R_INTERNAL_ERROR);
return -1;
}
#endif