summaryrefslogtreecommitdiffstats
path: root/ssl/s3_lib.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-12-11 22:18:00 +0000
committerMatt Caswell <matt@openssl.org>2015-12-11 22:18:00 +0000
commit8ca8fc480469e60d73997f5db5a6d07744fe031e (patch)
treed2f5897f9c41612a3a18a6fb049963991b8b8952 /ssl/s3_lib.c
parent30a5f32227fab78214a08775d38bfacbb5feaaa4 (diff)
Fix compile failure
Fix compile failure introduced by commit 94d61512360c due to a typo. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/s3_lib.c')
-rw-r--r--ssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index ee00741767..c08065f035 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -4466,7 +4466,7 @@ long ssl3_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
#ifndef OPENSSL_NO_DH
case SSL_CTRL_SET_TMP_DH_CB:
{
- cxt->cert->dh_tmp_cb = (DH *(*)(SSL *, int, int))fp;
+ ctx->cert->dh_tmp_cb = (DH *(*)(SSL *, int, int))fp;
}
break;
#endif