rse         98/10/28 07:01:19

  Modified:    src/support apxs.pl
               src/modules/standard mod_rewrite.c
  Log:
  Fix hook order in mod_rewrite's and apxs's module structure _comments_. The
  poor man who discovered this bug after he was already totally confused was
  Lincoln Stein <[EMAIL PROTECTED]>. Thanks for sharing your confusion, Lincoln.
  
  Revision  Changes    Path
  1.11      +2 -2      apache-1.3/src/support/apxs.pl
  
  Index: apxs.pl
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/support/apxs.pl,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- apxs.pl   1998/08/03 08:44:08     1.10
  +++ apxs.pl   1998/10/28 15:01:17     1.11
  @@ -599,11 +599,11 @@
       NULL,                  /* [#1] URI to filename translation    */
       NULL,                  /* [#4] validate user id from request  */
       NULL,                  /* [#5] check if the user is ok _here_ */
  -    NULL,                  /* [#2] check access by host address   */
  +    NULL,                  /* [#3] check access by host address   */
       NULL,                  /* [#6] determine MIME type            */
       NULL,                  /* [#7] pre-run fixups                 */
       NULL,                  /* [#9] log a transaction              */
  -    NULL,                  /* [#3] header parser                  */
  +    NULL,                  /* [#2] header parser                  */
       NULL,                  /* child_init                          */
       NULL,                  /* child_exit                          */
       NULL                   /* [#0] post read-request              */
  
  
  
  1.131     +2 -2      apache-1.3/src/modules/standard/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_rewrite.c,v
  retrieving revision 1.130
  retrieving revision 1.131
  diff -u -r1.130 -r1.131
  --- mod_rewrite.c     1998/08/25 09:15:39     1.130
  +++ mod_rewrite.c     1998/10/28 15:01:18     1.131
  @@ -192,11 +192,11 @@
      hook_uri2file,               /* [#1] URI to filename translation    */
      NULL,                        /* [#4] validate user id from request  */
      NULL,                        /* [#5] check if the user is ok _here_ */
  -   NULL,                        /* [#2] check access by host address   */
  +   NULL,                        /* [#3] check access by host address   */
      hook_mimetype,               /* [#6] determine MIME type            */
      hook_fixup,                  /* [#7] pre-run fixups                 */
      NULL,                        /* [#9] log a transaction              */
  -   NULL,                        /* [#3] header parser                  */
  +   NULL,                        /* [#2] header parser                  */
      init_child,                  /* child_init                          */
      NULL,                        /* child_exit                          */
      NULL                         /* [#0] post read-request              */
  
  
  

Reply via email to