You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by ge...@apache.org on 2003/09/05 14:33:28 UTC

cvs commit: httpd-test/perl-framework/c-modules/test_apr_uri mod_test_apr_uri.c

geoff       2003/09/05 05:33:28

  Modified:    perl-framework/c-modules/input_body_filter
                        mod_input_body_filter.c
               perl-framework/c-modules/test_apr_uri mod_test_apr_uri.c
  Log:
  adjustments for apr 1.0
  Reviewed by:	stas, cliff
  
  Revision  Changes    Path
  1.11      +1 -1      httpd-test/perl-framework/c-modules/input_body_filter/mod_input_body_filter.c
  
  Index: mod_input_body_filter.c
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/c-modules/input_body_filter/mod_input_body_filter.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- mod_input_body_filter.c	28 Jun 2002 08:40:43 -0000	1.10
  +++ mod_input_body_filter.c	5 Sep 2003 12:33:28 -0000	1.11
  @@ -167,7 +167,7 @@
   
   static const command_rec input_body_filter_cmds[] = {
       AP_INIT_FLAG("InputBodyFilter", ap_set_flag_slot,
  -                 APR_XtOffsetOf(input_body_filter_dcfg_t, enabled),
  +                 APR_OFFSETOF(input_body_filter_dcfg_t, enabled),
                    OR_ALL, "Enable input body filter"),
       { NULL }
   };
  
  
  
  1.5       +1 -1      httpd-test/perl-framework/c-modules/test_apr_uri/mod_test_apr_uri.c
  
  Index: mod_test_apr_uri.c
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/c-modules/test_apr_uri/mod_test_apr_uri.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mod_test_apr_uri.c	3 Feb 2003 17:11:01 -0000	1.4
  +++ mod_test_apr_uri.c	5 Sep 2003 12:33:28 -0000	1.5
  @@ -217,7 +217,7 @@
           }
           *strp = 0;
   
  -        apr_pool_sub_make(&sub, r->pool, NULL);
  +        apr_pool_create_ex(&sub, r->pool, NULL, NULL);
           status = apr_uri_parse(sub, input_uri, &result);
           if (status == APR_SUCCESS) {
   #define CHECK(f)                                                        \