From 1ebfead9da0596e8e84231f7ea8ba25a650a4d1e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 16 Feb 2005 13:40:36 +0000 Subject: nginx-0.1.19-RELEASE import *) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections. --- src/core/ngx_times.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/core/ngx_times.c') diff --git a/src/core/ngx_times.c b/src/core/ngx_times.c index 234a8aead..93542326f 100644 --- a/src/core/ngx_times.c +++ b/src/core/ngx_times.c @@ -308,7 +308,6 @@ void ngx_gmtime(time_t t, ngx_tm_t *tp) mday -= 28; } } - /* * there is no "yday" in Win32 SYSTEMTIME * @@ -316,7 +315,7 @@ void ngx_gmtime(time_t t, ngx_tm_t *tp) * yday += 31 + 28; * * if ((year % 4 == 0) && (year % 100 || (year % 400 == 0))) { - * yday++; + * yday++; * } */ } -- cgit