comparison src/core/ngx_times.c @ 410:a094317ba307 NGINX_0_7_14

nginx 0.7.14 *) Change: now the ssl_certificate and ssl_certificate_key directives have not default values. *) Feature: the "listen" directive supports the "ssl" parameter. *) Feature: now nginx takes into account a time zone change while reconfiguration on FreeBSD and Linux. *) Bugfix: the "listen" directive parameters such as "backlog", "rcvbuf", etc. were not set, if a default server was not the first one. *) Bugfix: if URI part captured by a "rewrite" directive was used as a query string, then the query string was not escaped. *) Bugfix: configuration file validity test improvements.
author Igor Sysoev <http://sysoev.ru>
date Mon, 01 Sep 2008 00:00:00 +0400
parents 05981f639d21
children be4f34123024
comparison
equal deleted inserted replaced
409:d46814b99ca0 410:a094317ba307
47 ngx_cached_err_log_time.len = sizeof("1970/09/28 12:00:00") - 1; 47 ngx_cached_err_log_time.len = sizeof("1970/09/28 12:00:00") - 1;
48 ngx_cached_http_time.len = sizeof("Mon, 28 Sep 1970 06:00:00 GMT") - 1; 48 ngx_cached_http_time.len = sizeof("Mon, 28 Sep 1970 06:00:00 GMT") - 1;
49 ngx_cached_http_log_time.len = sizeof("28/Sep/1970:12:00:00 +0600") - 1; 49 ngx_cached_http_log_time.len = sizeof("28/Sep/1970:12:00:00 +0600") - 1;
50 50
51 ngx_cached_time = &cached_time[0]; 51 ngx_cached_time = &cached_time[0];
52
53 #if !(NGX_WIN32)
54 tzset();
55 #endif
56 52
57 ngx_time_update(0, 0); 53 ngx_time_update(0, 0);
58 } 54 }
59 55
60 56