You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2003/12/13 16:41:33 UTC

cvs commit: httpd-2.0/modules/experimental mod_example.c

trawick     2003/12/13 07:41:33

  Modified:    modules/experimental mod_example.c
  Log:
  fix cut-n-paste errors in the logging of the current hook
  
  Revision  Changes    Path
  1.44      +2 -2      httpd-2.0/modules/experimental/mod_example.c
  
  Index: mod_example.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_example.c,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- mod_example.c	10 Oct 2003 09:19:12 -0000	1.43
  +++ mod_example.c	13 Dec 2003 15:41:33 -0000	1.44
  @@ -1009,7 +1009,7 @@
       /*
        * 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 @@
       /*
        * 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;
   }