From c41b3046a1b1df6c936c9572a03a5926ac9c9550 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 13 Dec 2003 15:41:33 +0000 Subject: [PATCH] fix cut-n-paste errors in the logging of the current hook git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102041 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_example.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/experimental/mod_example.c b/modules/experimental/mod_example.c index c292eeb3d8..25917313a2 100644 --- a/modules/experimental/mod_example.c +++ b/modules/experimental/mod_example.c @@ -1009,7 +1009,7 @@ static int x_quick_handler(request_rec *r, int lookup_uri) /* * Log the call and exit. */ - trace_add(r->server, NULL, cfg, "x_post_config()"); + trace_add(r->server, NULL, cfg, "x_quick_handler()"); return DECLINED; } @@ -1033,7 +1033,7 @@ static int x_pre_connection(conn_rec *c, void *csd) /* * Log the call and exit. */ - trace_add(r->server, NULL, cfg, "x_post_config()"); + trace_add(r->server, NULL, cfg, "x_pre_connection()"); #endif return OK; } -- 2.50.1