diff options
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 |