1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Fix two bugs introduced by r1070153

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070317 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Fritsch
2011-02-13 22:34:02 +00:00
parent 43fc2d47c7
commit d2b73e5730
2 changed files with 9 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ void ssl_scache_init(server_rec *s, apr_pool_t *p)
* this first (and only the first) time through, since the pool
* will be immediately cleared anyway. For every subsequent
* invocation, initialize the configured cache. */
if (!ap_state_query(AP_SQ_MAIN_STATE) == AP_SQ_MS_CREATE_PRE_CONFIG)
if (ap_state_query(AP_SQ_MAIN_STATE) == AP_SQ_MS_CREATE_PRE_CONFIG)
return;
#ifdef HAVE_OCSP_STAPLING