You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2001/12/04 23:42:29 UTC

cvs commit: modperl-2.0/xs/maps apache_functions.map

dougm       01/12/04 14:42:29

  Modified:    xs/maps  apache_functions.map
  Log:
  properly default next_filter for subrequest methods to r->output_filters->next rather than NULL
  
  Revision  Changes    Path
  1.40      +3 -3      modperl-2.0/xs/maps/apache_functions.map
  
  Index: apache_functions.map
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/maps/apache_functions.map,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- apache_functions.map	2001/11/19 23:46:48	1.39
  +++ apache_functions.map	2001/12/04 22:42:29	1.40
  @@ -71,13 +71,13 @@
    ap_sub_req_lookup_dirent
   
   subrequest_rec *:ap_sub_req_lookup_file | | \
  - r, new_file, next_filter=NULL | lookup_file
  + r, new_file, next_filter=r->output_filters->next | lookup_file
   
   subrequest_rec *:ap_sub_req_lookup_uri  | | \
  - r, new_file, next_filter=NULL | lookup_uri
  + r, new_file, next_filter=r->output_filters->next | lookup_uri
   
   subrequest_rec *:ap_sub_req_method_uri  | | \
  - r, method, new_file, next_filter=NULL | lookup_method_uri
  + r, method, new_file, next_filter=r->output_filters->next | lookup_method_uri
   
   PACKAGE=Apache::SubRequest   ISA=Apache::RequestRec
    ap_destroy_sub_req  | | r | DESTROY