comparison src/http/ngx_http_parse_time.c @ 57:a499e0d1f16e

nginx-0.0.1-2003-01-30-10:28:09 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 30 Jan 2003 07:28:09 +0000
parents 0e81ac0bb3e2
children 9f3a78b06c48
comparison
equal deleted inserted replaced
56:058f01f78761 57:a499e0d1f16e
18 } fmt; 18 } fmt;
19 19
20 fmt = 0; 20 fmt = 0;
21 end = value + len; 21 end = value + len;
22 22
23 #if (NGX_SUPPRESS_WARN)
24 day = 32;
25 year = 2038;
26 #endif
27
23 for (p = value; p < end; p++) { 28 for (p = value; p < end; p++) {
24 if (*p == ',') { 29 if (*p == ',') {
25 break; 30 break;
26 } 31 }
27 32