summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-12-07 12:28:50 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-12-07 12:28:50 +0000
commit7454cba4fa82a6e83df230a239f8ecc385c86edb (patch)
treeafcf5897e759192dfca3f192b7ba58415d95489d
parent5713411893d32980b14cbcfe44e9f9c76bbc5872 (diff)
fix error discrepancy
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index e3e3b922d1..32f99013ad 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -775,7 +775,7 @@ unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, unsigned cha
if(ssl_add_serverhello_use_srtp_ext(s, ret, &el, el))
{
- SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
+ SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
return NULL;
}
ret+=el;