summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-10-09 19:26:43 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-10-09 19:26:43 +0000
commitc99d2fbc72c5dfbb8ff5aa3fb51c4343efde0cfc (patch)
tree32b9f86cfd2944cbae557cbe513a1dd03de2929c
parent73ea39142471b974c791bedd128ced7dbea85172 (diff)
downloadlibapr-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
-rw-r--r--time/unix/time.c2
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