You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by gr...@apache.org on 2004/02/05 13:26:39 UTC

cvs commit: httpd-python/src mod_python.c

grisha      2004/02/05 04:26:39

  Modified:    src      mod_python.c
  Log:
  Input filter should of type resource
  
  Revision  Changes    Path
  1.112     +2 -2      httpd-python/src/mod_python.c
  
  Index: mod_python.c
  ===================================================================
  RCS file: /home/cvs/httpd-python/src/mod_python.c,v
  retrieving revision 1.111
  retrieving revision 1.112
  diff -u -r1.111 -r1.112
  --- mod_python.c	19 Jan 2004 05:06:14 -0000	1.111
  +++ mod_python.c	5 Feb 2004 12:26:39 -0000	1.112
  @@ -1695,7 +1695,7 @@
       /* register the filter NOTE - this only works so long as the
          directive is only allowed in the main config. For .htaccess we
          would have to make sure not to duplicate this */
  -    frec = ap_register_input_filter(name, python_input_filter, NULL, AP_FTYPE_CONNECTION);
  +    frec = ap_register_input_filter(name, python_input_filter, NULL, AP_FTYPE_RESOURCE);
    
       conf = (py_config *) mconfig;