diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-27 18:01:57 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-27 18:01:57 +0000 |
commit | c02473048cee372cb8644e1f2d566431781074d2 (patch) | |
tree | 689654cd7b37636279b5587ddd3b45ad6bddbd3c /src/os/unix/ngx_time.c | |
parent | b1af9bbcabf1bdbe119366971a2d0f6c3f8f595d (diff) | |
download | nginx-c02473048cee372cb8644e1f2d566431781074d2.tar.gz nginx-c02473048cee372cb8644e1f2d566431781074d2.zip |
nginx-0.0.7-2004-06-27-22:01:57 import
Diffstat (limited to 'src/os/unix/ngx_time.c')
-rw-r--r-- | src/os/unix/ngx_time.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/os/unix/ngx_time.c b/src/os/unix/ngx_time.c index 5ba95bc30..8647e0e69 100644 --- a/src/os/unix/ngx_time.c +++ b/src/os/unix/ngx_time.c @@ -6,13 +6,17 @@ void ngx_localtime(ngx_tm_t *tm) { #if (HAVE_LOCALTIME_R) + time_t now; - localtime_r((time_t *) &ngx_cached_time, tm); + now = ngx_time(); + localtime_r(&now, tm); #else + time_t now; ngx_tm_t *t; - t = localtime((time_t *) &ngx_cached_time); + now = ngx_time(); + t = localtime(&now); *tm = *t; #endif |