summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-17 22:38:25 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-17 22:38:25 +0000
commit8aad360e164b844879331115990cabf08bfeef99 (patch)
tree9a84e18be5a65a3a914baf21b8120a57e6f2a7f7 /time
parentf62f38dad2a76981b8970f0d45ab71e28ec83478 (diff)
downloadlibapr-8aad360e164b844879331115990cabf08bfeef99.tar.gz
Rename apr_implode_time to apr_time_exp_get.
Submitted by: Thom May <thom@planetarytramp.net> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/unix/time.c4
-rw-r--r--time/win32/time.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index e6ef85b9f..c12ecb935 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -170,7 +170,7 @@ APR_DECLARE(apr_status_t) apr_explode_localtime(apr_time_exp_t *result, apr_time
#endif /* __EMX__ */
}
-APR_DECLARE(apr_status_t) apr_implode_time(apr_time_t *t, apr_time_exp_t *xt)
+APR_DECLARE(apr_status_t) apr_time_exp_get(apr_time_t *t, apr_time_exp_t *xt)
{
int year;
time_t days;
@@ -203,7 +203,7 @@ APR_DECLARE(apr_status_t) apr_implode_time(apr_time_t *t, apr_time_exp_t *xt)
APR_DECLARE(apr_status_t) apr_implode_gmt(apr_time_t *t, apr_time_exp_t *xt)
{
- apr_status_t status = apr_implode_time(t, xt);
+ apr_status_t status = apr_time_exp_get(t, xt);
if (status == APR_SUCCESS)
*t -= (apr_time_t) xt->tm_gmtoff * APR_USEC_PER_SEC;
return status;
diff --git a/time/win32/time.c b/time/win32/time.c
index 98cfffd8a..228628115 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -185,7 +185,7 @@ APR_DECLARE(apr_status_t) apr_explode_localtime(apr_time_exp_t *result,
return APR_SUCCESS;
}
-APR_DECLARE(apr_status_t) apr_implode_time(apr_time_t *t,
+APR_DECLARE(apr_status_t) apr_time_exp_get(apr_time_t *t,
apr_time_exp_t *xt)
{
int year;
@@ -223,7 +223,7 @@ APR_DECLARE(apr_status_t) apr_implode_time(apr_time_t *t,
APR_DECLARE(apr_status_t) apr_implode_gmt(apr_time_t *t,
apr_time_exp_t *xt)
{
- apr_status_t status = apr_implode_time(t, xt);
+ apr_status_t status = apr_time_exp_get(t, xt);
if (status == APR_SUCCESS)
*t -= (apr_time_t) xt->tm_gmtoff * APR_USEC_PER_SEC;
return status;