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 2001/02/06 16:55:09 UTC

cvs commit: httpd-2.0/modules/filters mod_include.h mod_include.c

trawick     01/02/06 07:55:09

  Modified:    modules/filters mod_include.h mod_include.c
  Log:
  move the instantiation of includes_module out of mod_include.h
  
  Revision  Changes    Path
  1.10      +0 -2      httpd-2.0/modules/filters/mod_include.h
  
  Index: mod_include.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_include.h	2001/02/05 22:57:21	1.9
  +++ mod_include.h	2001/02/06 15:55:05	1.10
  @@ -73,8 +73,6 @@
   #define RAW_ASCII_CHAR(ch)  (ch)
   #endif /*APR_CHARSET_EBCDIC*/
   
  -module AP_MODULE_DECLARE_DATA includes_module;
  -
   /* just need some arbitrary non-NULL pointer which can't also be a request_rec */
   #define NESTED_INCLUDE_MAGIC	(&includes_module)
   
  
  
  
  1.94      +1 -1      httpd-2.0/modules/filters/mod_include.c
  
  Index: mod_include.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/filters/mod_include.c,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -u -r1.93 -r1.94
  --- mod_include.c	2001/02/05 22:57:20	1.93
  +++ mod_include.c	2001/02/06 15:55:06	1.94
  @@ -93,7 +93,7 @@
   #endif
   #include "util_ebcdic.h"
   
  -
  +module AP_MODULE_DECLARE_DATA includes_module;
   static apr_hash_t *include_hash;
   static APR_OPTIONAL_FN_TYPE(ap_register_include_handler) *ssi_pfn_register;