diff --git a/src/ssl_ocsp.c b/src/ssl_ocsp.c index 19bb92ac3..323c32e19 100644 --- a/src/ssl_ocsp.c +++ b/src/ssl_ocsp.c @@ -1388,6 +1388,11 @@ static struct task *ssl_ocsp_update_responses(struct task *task, void *context, */ static int ssl_ocsp_update_precheck() { + + /* the ocsp-update is not usable in the master process */ + if (master) + return ERR_NONE; + /* initialize the OCSP update dedicated httpclient */ httpclient_ocsp_update_px = httpclient_create_proxy(""); if (!httpclient_ocsp_update_px)