Commit 8ca8fc48 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix compile failure



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

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent 30a5f322
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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