Fix compile failure

Fix compile failure introduced by commit 94d6151236 due to a typo.

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Matt Caswell 2015-12-11 22:18:00 +00:00
parent 30a5f32227
commit 8ca8fc4804

View File

@ -4466,7 +4466,7 @@ long ssl3_ctx_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void))
#ifndef OPENSSL_NO_DH #ifndef OPENSSL_NO_DH
case SSL_CTRL_SET_TMP_DH_CB: 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; break;
#endif #endif