view src/os/unix/ngx_time.c @ 305:4b1a3a4acc60

nginx-0.0.3-2004-04-02-19:13:20 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 02 Apr 2004 15:13:20 +0000
parents 9f3a78b06c48
children ba876b26b76d
line wrap: on
line source


#include <ngx_config.h>
#include <ngx_core.h>


void ngx_localtime(ngx_tm_t *tm)
{
#if (HAVE_LOCALTIME_R)

    localtime_r(&ngx_cached_time, tm);

#else
    ngx_tm_t  *t;

    t = localtime(&ngx_cached_time);
    *tm = *t;

#endif

    tm->ngx_tm_mon++;
    tm->ngx_tm_year += 1900;
}