comparison src/os/unix/ngx_time.c @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 6f8b0dc0f8dd
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #include <ngx_config.h>
8 #include <ngx_core.h>
9
10
11 void ngx_localtime(ngx_tm_t *tm)
12 {
13 #if (HAVE_LOCALTIME_R)
14 time_t now;
15
16 now = ngx_time();
17 localtime_r(&now, tm);
18
19 #else
20 time_t now;
21 ngx_tm_t *t;
22
23 now = ngx_time();
24 t = localtime(&now);
25 *tm = *t;
26
27 #endif
28
29 tm->ngx_tm_mon++;
30 tm->ngx_tm_year += 1900;
31 }