From c99d2fbc72c5dfbb8ff5aa3fb51c4343efde0cfc Mon Sep 17 00:00:00 2001 From: bnicholes Date: Tue, 9 Oct 2001 19:26:43 +0000 Subject: 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 --- time/unix/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'time/unix') 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 -- cgit v1.2.1