]> granicus.if.org Git - apache/commitdiff
changed comments; no functional change.
authorGuenter Knauf <fuankg@apache.org>
Sat, 23 Feb 2008 13:52:54 +0000 (13:52 +0000)
committerGuenter Knauf <fuankg@apache.org>
Sat, 23 Feb 2008 13:52:54 +0000 (13:52 +0000)
Submitted by Kaspar Brand.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@630436 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_kernel.c

index 6a0e5ef620c9804d247f4d197e56cf55afe0e3d7..1c3b5f5c19987fff5989d50de689a1bd0f0f0b48 100644 (file)
@@ -2023,19 +2023,22 @@ static int ssl_find_vhost(void *servername, conn_rec *c, server_rec *s)
         }
 
         /*
-         * We also need to make sure that the correct mctx is
-         * assigned to the connection - the CRL callback e.g.
+         * We also need to make sure that the correct mctx
+         * (accessed through the c->base_server->module_config vector)
+         * is assigned to the connection - the CRL callback e.g.
          * makes use of it for retrieving its store (mctx->crl).
+         * Since logging in callbacks uses c->base_server in many
+         * cases, it also ensures that these messages are routed
+         * to the proper log.
          */
         c->base_server = s;
 
-        /* Since logging in callbacks uses c->base_server in many
-         * cases, it also ensures that these messages are routed
-         * to the proper log.  And finally, there is one special
-         * filter callback, which is set very early depending on the
-         * base_server's log level. If this is not the first vhost
-         * we're now selecting (and the first vhost doesn't use
-         * APLOG_DEBUG), then we need to set that callback here.
+        /*
+         * There is one special filter callback, which is set
+         * very early depending on the base_server's log level.
+         * If this is not the first vhost we're now selecting
+         * (and the first vhost doesn't use APLOG_DEBUG), then
+         * we need to set that callback here.
          */
         if (c->base_server->loglevel >= APLOG_DEBUG) {
             BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);