summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBill Stoddard <stoddard@apache.org>2001-04-20 17:59:05 +0000
committerBill Stoddard <stoddard@apache.org>2001-04-20 17:59:05 +0000
commit2617b1c54018599ef11cbcf09425d469e185bcd1 (patch)
tree705d87b782604379aaf418850c4175f0e633eee7 /CHANGES
parentcd7883893c7ca99e22a3a114d8796117435f7d2c (diff)
downloadhttpd-2617b1c54018599ef11cbcf09425d469e185bcd1.tar.gz
Fix seg fault at start-up introduced by Ryan's change to enabl
modules to specify their own logging tags. mod_log_config registers an optional function, ap_register_log_handler(). ap_register_log_handler() was being called by http_core before the directive hash table was created. This patch creates the directive hash table before ap_register_log_handler() is registered as an optional function. Submitted by: [jean-frederic clere <jfrederic.clere@fujitsu-siemens.com>] Reviewed by: Jeff Trawick, Bill Stoddard git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88904 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index ba886eaf9f..6f780d4b35 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,12 @@
Changes with Apache 2.0.18-dev
+ *) Fix seg fault at start-up introduced by Ryan's change to enable
+ modules to specify their own logging tags. mod_log_config
+ registers an optional function, ap_register_log_handler().
+ ap_register_log_handler() was being called by http_core before
+ the directive hash table was created. This patch creates the
+ directive hash table before ap_register_log_handler() is
+ registered as an optional function.
+ [jean-frederic clere <jfrederic.clere@fujitsu-siemens.com>]
*) Add ap_set_int_slot() function
[John K. Sterling <sterling@covalent.net>]