apr-utils rename apr_ansi_time_to_apr_time and
apr_exploded_time_t.


PR:
Obtained from:
Submitted by:	 Thom May <thom@planetarytramp.net>
Reviewed by:	Ian Holsman


git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/trunk@58568 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CHANGES b/CHANGES
index bbe059b..0780afa 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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 <thom@planetarytramp.net>]
+
   *) Add detection support for FreeBSD's expat and expat2 ports.
      [Justin Erenkrantz]
 
diff --git a/misc/apr_date.c b/misc/apr_date.c
index 788cd79..6c5e9f9 100644
--- a/misc/apr_date.c
+++ b/misc/apr_date.c
@@ -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;