View | Details | Raw Unified | Return to bug 60457
Collapse All | Expand All

(-)./modules/ssl/ssl_engine_init.c.orig (+4 lines)
Lines 221-226 Link Here
221
            sc->server->pphrase_dialog_type = SSL_PPTYPE_BUILTIN;
221
            sc->server->pphrase_dialog_type = SSL_PPTYPE_BUILTIN;
222
        }
222
        }
223
223
224
        if (sc->server->ocsp_enabled == UNSET) {
225
            sc->server->ocsp_enabled = FALSE;
226
        }
227
224
#ifdef HAVE_FIPS
228
#ifdef HAVE_FIPS
225
        if (sc->fips == UNSET) {
229
        if (sc->fips == UNSET) {
226
            sc->fips = FALSE;
230
            sc->fips = FALSE;
(-)./modules/ssl/ssl_engine_config.c.orig (-1 / +1 lines)
Lines 129-135 Link Here
129
    mctx->auth.verify_depth   = UNSET;
129
    mctx->auth.verify_depth   = UNSET;
130
    mctx->auth.verify_mode    = SSL_CVERIFY_UNSET;
130
    mctx->auth.verify_mode    = SSL_CVERIFY_UNSET;
131
131
132
    mctx->ocsp_enabled        = FALSE;
132
    mctx->ocsp_enabled        = UNSET;
133
    mctx->ocsp_force_default  = FALSE;
133
    mctx->ocsp_force_default  = FALSE;
134
    mctx->ocsp_responder      = NULL;
134
    mctx->ocsp_responder      = NULL;
135
    mctx->ocsp_resptime_skew  = UNSET;
135
    mctx->ocsp_resptime_skew  = UNSET;

Return to bug 60457