]> granicus.if.org Git - apache/commitdiff
fix cut-n-paste errors in the logging of the current hook
authorJeff Trawick <trawick@apache.org>
Sat, 13 Dec 2003 15:41:33 +0000 (15:41 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 13 Dec 2003 15:41:33 +0000 (15:41 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102041 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_example.c

index c292eeb3d87fe43fcba75b2278a14438e2debfe4..25917313a2d2fd162f1679a4a1d36bae9af2f58f 100644 (file)
@@ -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;
 }