diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-10-09 19:26:43 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2001-10-09 19:26:43 +0000 |
commit | c99d2fbc72c5dfbb8ff5aa3fb51c4343efde0cfc (patch) | |
tree | 32b9f86cfd2944cbae557cbe513a1dd03de2929c /time/unix/time.c | |
parent | 73ea39142471b974c791bedd128ced7dbea85172 (diff) | |
download | libapr-c99d2fbc72c5dfbb8ff5aa3fb51c4343efde0cfc.tar.gz |
Allowed NetWare to take advantage of the system timezone variable
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62410 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'time/unix/time.c')
-rw-r--r-- | time/unix/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/time/unix/time.c b/time/unix/time.c index 00e9b247a..1c26f8704 100644 --- a/time/unix/time.c +++ b/time/unix/time.c @@ -156,7 +156,7 @@ APR_DECLARE(apr_status_t) apr_explode_gmt(apr_exploded_time_t *result, apr_time_ APR_DECLARE(apr_status_t) apr_explode_localtime(apr_exploded_time_t *result, apr_time_t input) { -#if defined(__EMX__) +#if defined(__EMX__) || defined(NETWARE) /* EMX gcc (OS/2) has a timezone global we can use */ return apr_explode_time(result, input, -timezone); #else |