summaryrefslogtreecommitdiff
path: root/server/util_time.c
diff options
context:
space:
mode:
authorSander Striker <striker@apache.org>2002-03-21 10:10:41 +0000
committerSander Striker <striker@apache.org>2002-03-21 10:10:41 +0000
commitb2bb3f6764e7b85953026689f81124978d8c04b2 (patch)
treeb0d6c1dcb593d42aa4001aaf89def837cd03986c /server/util_time.c
parent5f469e78155ba74c0c3e28b05ed55ed0af9d014d (diff)
downloadhttpd-b2bb3f6764e7b85953026689f81124978d8c04b2.tar.gz
Update callers of apr_explode_gmt to apr_time_exp_gmt. The
function was renamed in apr. Submitted by: Thom May <thom@planetarytramp.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_time.c')
-rw-r--r--server/util_time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/util_time.c b/server/util_time.c
index 5b33e3ff4e..e9131a1602 100644
--- a/server/util_time.c
+++ b/server/util_time.c
@@ -130,7 +130,7 @@ static apr_status_t cached_explode(apr_time_exp_t *xt, apr_time_t t,
(seconds != cache_element_snapshot.t_validate)) {
/* Invalid snapshot */
if (use_gmt) {
- return apr_explode_gmt(xt, t);
+ return apr_time_exp_gmt(xt, t);
}
else {
return apr_explode_localtime(xt, t);
@@ -145,7 +145,7 @@ static apr_status_t cached_explode(apr_time_exp_t *xt, apr_time_t t,
else {
apr_status_t r;
if (use_gmt) {
- r = apr_explode_gmt(xt, t);
+ r = apr_time_exp_gmt(xt, t);
}
else {
r = apr_explode_localtime(xt, t);