summaryrefslogtreecommitdiff
path: root/time
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2003-09-03 18:26:58 +0000
committerJeff Trawick <trawick@apache.org>2003-09-03 18:26:58 +0000
commit9b8c9a47ff9801ca8b57d80dbf498ec29a6dcac5 (patch)
tree0ae35cfdcc0d1659349cd1af0623433a6eaf4d1b /time
parent8ef7d115c1268b62acad065e9b98dedf518a5a06 (diff)
downloadapr-9b8c9a47ff9801ca8b57d80dbf498ec29a6dcac5.tar.gz
remove these interfaces:
apr_compare_groups apr_compare_users apr_current_userid apr_explode_localtime apr_explode_time apr_filename_of_pathname apr_get_groupid apr_get_groupname apr_get_home_directory apr_get_userid apr_get_username apr_group_name_get apr_implode_gmt apr_lstat FNM_NOMATCH FNM_NOESCAPE FNM_PATHNAME FNM_PERIOD FNM_CASE_BLIND change the function args to this interface: apr_mmap_dup this function's args changed in a previous commit, so mention that in CHANGES apr_socket_create git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64607 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time')
-rw-r--r--time/unix/time.c20
-rw-r--r--time/win32/time.c24
2 files changed, 0 insertions, 44 deletions
diff --git a/time/unix/time.c b/time/unix/time.c
index 949b9ff2d..d2e55f0a7 100644
--- a/time/unix/time.c
+++ b/time/unix/time.c
@@ -371,24 +371,4 @@ APR_DECLARE(void) apr_time_clock_hires(apr_pool_t *p)
return;
}
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_explode_time(apr_time_exp_t *result,
- apr_time_t input,
- apr_int32_t offs)
-{
- return apr_time_exp_tz(result, input, offs);
-}
-
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_explode_localtime(apr_time_exp_t *result,
- apr_time_t input)
-{
- return apr_time_exp_lt(result, input);
-}
-
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_implode_gmt(apr_time_t *t, apr_time_exp_t *xt)
-{
- return apr_time_exp_gmt_get(t, xt);
-}
diff --git a/time/win32/time.c b/time/win32/time.c
index b5beb4c71..365282878 100644
--- a/time/win32/time.c
+++ b/time/win32/time.c
@@ -368,27 +368,3 @@ APR_DECLARE(void) apr_time_clock_hires(apr_pool_t *p)
apr_pool_cleanup_null);
}
}
-
-
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_explode_time(apr_time_exp_t *result,
- apr_time_t input,
- apr_int32_t offs)
-{
- return apr_time_exp_tz(result, input, offs);
-}
-
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_explode_localtime(apr_time_exp_t *result,
- apr_time_t input)
-{
- return apr_time_exp_lt(result, input);
-}
-
-/* Deprecated */
-APR_DECLARE(apr_status_t) apr_implode_gmt(apr_time_t *t,
- apr_time_exp_t *xt)
-{
- return apr_time_exp_gmt_get(t, xt);
-}
-