You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by ia...@apache.org on 2002/03/06 18:51:22 UTC

cvs commit: apr-util/misc apr_date.c

ianh        02/03/06 09:51:22

  Modified:    .        CHANGES
               misc     apr_date.c
  Log:
  apr-utils rename apr_ansi_time_to_apr_time and
  apr_exploded_time_t.
  
  Submitted by:	 Thom May <th...@planetarytramp.net>
  Reviewed by:	Ian Holsman
  
  Revision  Changes    Path
  1.58      +4 -0      apr-util/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apr-util/CHANGES,v
  retrieving revision 1.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- CHANGES	1 Mar 2002 05:50:27 -0000	1.57
  +++ CHANGES	6 Mar 2002 17:51:22 -0000	1.58
  @@ -1,5 +1,9 @@
   Changes with APR-util b1  
   
  +  *) renames: apr_ansi_time_to_apr_time becomes apr_time_ansi_put
  +     ap_exploded_time_t becomes apr_time_exp_t
  +     [Thom May <th...@planetarytramp.net>]
  +
     *) Add detection support for FreeBSD's expat and expat2 ports.
        [Justin Erenkrantz]
   
  
  
  
  1.9       +2 -2      apr-util/misc/apr_date.c
  
  Index: apr_date.c
  ===================================================================
  RCS file: /home/cvs/apr-util/misc/apr_date.c,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- apr_date.c	19 Jan 2002 12:40:03 -0000	1.8
  +++ apr_date.c	6 Mar 2002 17:51:22 -0000	1.9
  @@ -186,7 +186,7 @@
    */
   APU_DECLARE(apr_time_t) apr_date_parse_http(const char *date)
   {
  -    apr_exploded_time_t ds;
  +    apr_time_exp_t ds;
       apr_time_t result;
       int mint, mon;
       const char *monstr, *timstr;
  @@ -345,7 +345,7 @@
    */
   APU_DECLARE(apr_time_t) apr_date_parse_rfc(char *date)
   {
  -    apr_exploded_time_t ds;
  +    apr_time_exp_t ds;
       apr_time_t result;
       int mint, mon;
       char *monstr, *timstr, *gmtstr;