blob: 20ec4644bbf43492021d2af4622da78bf0d8348c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Copyright (C) Igor Sysoev
*/
#include <ngx_config.h>
#include <ngx_core.h>
void ngx_localtime(ngx_tm_t *tm)
{
#if (NGX_HAVE_LOCALTIME_R)
time_t now;
now = ngx_time();
localtime_r(&now, tm);
#else
time_t now;
ngx_tm_t *t;
now = ngx_time();
t = localtime(&now);
*tm = *t;
#endif
tm->ngx_tm_mon++;
tm->ngx_tm_year += 1900;
}
|