striker 02/03/17 14:39:36
Modified: misc apr_date.c
Log:
Rename apr_implode_time to apr_time_exp_get.
Submitted by: Thom May <[EMAIL PROTECTED]>
Revision Changes Path
1.11 +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.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- apr_date.c 13 Mar 2002 20:40:49 -0000 1.10
+++ apr_date.c 17 Mar 2002 22:39:36 -0000 1.11
@@ -316,7 +316,7 @@
*/
ds.tm_usec = 0;
ds.tm_gmtoff = 0;
- if (apr_implode_time(&result, &ds) != APR_SUCCESS)
+ if (apr_time_exp_get(&result, &ds) != APR_SUCCESS)
return APR_DATE_BAD;
return result;
@@ -602,7 +602,7 @@
}
}
- /* apr_implode_time uses tm_usec field, but it hasn't been set yet.
+ /* apr_time_exp_get uses tm_usec field, but it hasn't been set yet.
* It should be safe to just zero out this value.
* tm_usec is the number of microseconds into the second. HTTP only
* cares about second granularity.