https://issues.apache.org/bugzilla/show_bug.cgi?id=56919

--- Comment #11 from Ruediger Pluem <rpl...@apache.org> ---
(In reply to Kaspar Brand from comment #10)

> One option might be to avoid ex_data fiddling in the "first round", based on
> a ssl_config_global_isfixed() check - i.e., something like this (untested):
> 
> Index: ssl_engine_init.c
> ===================================================================
> --- ssl_engine_init.c   (revision 1624017)
> +++ ssl_engine_init.c   (working copy)
> @@ -272,7 +272,9 @@
>          return HTTP_INTERNAL_SERVER_ERROR;
>      }
>  #ifdef HAVE_OCSP_STAPLING
> -    ssl_stapling_ex_init();
> +    if (ssl_config_global_isfixed(mc) == TRUE) {
> +        ssl_stapling_ex_init();
> +    }
>  #endif

Maybe I am missing something, but we always call

ssl_config_global_fix(mc);

a few lines above. So the condition would be always true.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscr...@httpd.apache.org
For additional commands, e-mail: bugs-h...@httpd.apache.org

Reply via email to