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 2011/02/14 21:01:52 UTC

svn commit: r1070632 - /httpd/httpd/trunk/modules/examples/mod_example_hooks.c

Author: trawick
Date: Mon Feb 14 20:01:52 2011
New Revision: 1070632

URL: http://svn.apache.org/viewvc?rev=1070632&view=rev
Log:
fix compile failure in r1070616

Modified:
    httpd/httpd/trunk/modules/examples/mod_example_hooks.c

Modified: httpd/httpd/trunk/modules/examples/mod_example_hooks.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/examples/mod_example_hooks.c?rev=1070632&r1=1070631&r2=1070632&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/examples/mod_example_hooks.c (original)
+++ httpd/httpd/trunk/modules/examples/mod_example_hooks.c Mon Feb 14 20:01:52 2011
@@ -1153,7 +1153,7 @@ static int x_process_connection(conn_rec
  *
  * This is a HOOK_VOID hook.
  */
-void x_post_read_request(request_rec *r, conn_rec *c)
+static void x_pre_read_request(request_rec *r, conn_rec *c)
 {
     /*
      * We don't actually *do* anything here, except note the fact that we were