[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Fri Dec 11 23:06:57 UTC 2015
The branch master has been updated
via 8ca8fc480469e60d73997f5db5a6d07744fe031e (commit)
from 30a5f32227fab78214a08775d38bfacbb5feaaa4 (commit)
- Log -----------------------------------------------------------------
commit 8ca8fc480469e60d73997f5db5a6d07744fe031e
Author: Matt Caswell <matt at openssl.org>
Date: Fri Dec 11 22:18:00 2015 +0000
Fix compile failure
Fix compile failure introduced by commit 94d61512360c due to a typo.
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
ssl/s3_lib.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index ee00741..c08065f 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
More information about the openssl-commits
mailing list