From 16058fa112e152c39a96b66b1c4fcd42e922b0a4 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Mon, 22 Feb 2010 17:18:33 +0000 Subject: [PATCH] comment only: fix name of hook and try to reword for clarity git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@912667 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/core.c b/server/core.c index bd66dc3e1d..27fc034abd 100644 --- a/server/core.c +++ b/server/core.c @@ -3929,10 +3929,10 @@ static int core_pre_connection(conn_rec *c, void *csd) static void register_hooks(apr_pool_t *p) { - /* create_connection and install_transport_filters are - * hooks that should always be APR_HOOK_REALLY_LAST to give other - * modules the opportunity to install alternate network transports - * and stop other functions from being run. + /* create_connection and pre_connection should always be hooked + * APR_HOOK_REALLY_LAST by core to give other modules the opportunity + * to install alternate network transports and stop other functions + * from being run. */ ap_hook_create_connection(core_create_conn, NULL, NULL, APR_HOOK_REALLY_LAST); -- 2.40.0