From: Jeff Trawick Date: Sat, 13 Dec 2003 15:41:33 +0000 (+0000) Subject: fix cut-n-paste errors in the logging of the current hook X-Git-Tag: pre_ajp_proxy~934 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c41b3046a1b1df6c936c9572a03a5926ac9c9550;p=apache 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 --- 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; }