trawick     01/05/16 10:22:38

  Modified:    .        CHANGES
               include  apr_xml.h
  Log:
  Rename field "private" in struct apr_xml_elem to "priv" for C++
  compatibility.
  PR:             7727
  Submitted by: Joshua MacDonald <[EMAIL PROTECTED]>
  Reviewed by:  Jeff Trawick
  
  Revision  Changes    Path
  1.17      +3 -0      apr-util/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr-util/CHANGES,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- CHANGES   2001/05/15 04:23:40     1.16
  +++ CHANGES   2001/05/16 17:22:25     1.17
  @@ -1,4 +1,7 @@
   Changes with APR-util b1  
  +  *) Rename field "private" in struct apr_xml_elem to "priv" for C++
  +     compatibility.  PR #7727  [Joshua MacDonald <[EMAIL PROTECTED]>]
  +
     *) Make APR_IMPLEMENT_EXTERNAL_HOOK_BASE generate a 
        ${namespace}_hook_get_${hookname} function to fetch the
        list of registered hooks [Doug MacEachern]
  
  
  
  1.13      +1 -1      apr-util/include/apr_xml.h
  
  Index: apr_xml.h
  ===================================================================
  RCS file: /home/cvs/apr-util/include/apr_xml.h,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- apr_xml.h 2001/02/24 14:17:25     1.12
  +++ apr_xml.h 2001/05/16 17:22:34     1.13
  @@ -220,7 +220,7 @@
   
       /* used by modules during request processing */
       /** Place for modules to store private data */
  -    void *private;
  +    void *priv;
   };
   
   #define APR_XML_ELEM_IS_EMPTY(e) ((e)->first_child == NULL && \
  
  
  

Reply via email to