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 st...@apache.org on 2002/07/09 08:52:09 UTC

cvs commit: modperl-2.0/xs/APR/Table APR__Table.h

stas        2002/07/08 23:52:08

  Modified:    xs/APR/Table APR__Table.h
  Log:
  apr_table_t is now an opaque type, use apr_table_elts() to get the array
  record
  
  Revision  Changes    Path
  1.8       +1 -1      modperl-2.0/xs/APR/Table/APR__Table.h
  
  Index: APR__Table.h
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/xs/APR/Table/APR__Table.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- APR__Table.h	12 Nov 2001 22:14:36 -0000	1.7
  +++ APR__Table.h	9 Jul 2002 06:52:08 -0000	1.8
  @@ -70,7 +70,7 @@
           char *filter_entry;
           STRLEN len;
           
  -        tdata.filter = apr_hash_make(table->a.pool);
  +        tdata.filter = apr_hash_make(apr_table_elts(table)->pool);
   
           while (MARK <= SP) {
               filter_entry = SvPV(*MARK, len);