comparison src/http/ngx_http_parse_time.c @ 232:d8f5c91a5c07 NGINX_0_4_1

nginx 0.4.1 *) Bugfix: the DragonFlyBSD compatibility. Thanks to Pavel Nazarov. *) Workaround: of bug in 64-bit Linux sendfile(), when file is more than 2G. *) Feature: now on Linux nginx uses O_NOATIME flag for static requests. Thanks to Yusuf Goolamabbas.
author Igor Sysoev <http://sysoev.ru>
date Thu, 14 Sep 2006 00:00:00 +0400
parents 72eb30262aac
children c5c2b2883984
comparison
equal deleted inserted replaced
231:8024b0d52263 232:d8f5c91a5c07
15 { 15 {
16 u_char *p, *end; 16 u_char *p, *end;
17 int day, month, year, hour, min, sec; 17 int day, month, year, hour, min, sec;
18 enum { 18 enum {
19 no = 0, 19 no = 0,
20 rfc822, /* Tue 10 Nov 2002 23:50:13 */ 20 rfc822, /* Tue, 10 Nov 2002 23:50:13 */
21 rfc850, /* Tuesday, 10-Dec-02 23:50:13 */ 21 rfc850, /* Tuesday, 10-Dec-02 23:50:13 */
22 isoc /* Tue Dec 10 23:50:13 2002 */ 22 isoc /* Tue Dec 10 23:50:13 2002 */
23 } fmt; 23 } fmt;
24 24
25 fmt = 0; 25 fmt = 0;