comparison src/http/ngx_http_upstream.c @ 4474:41f640a693de

Time parsing cleanup. Nuke NGX_PARSE_LARGE_TIME, it's not used since 0.6.30. The only error ngx_parse_time() can currently return is NGX_ERROR, check it explicitly and make sure to cast it to appropriate type (either time_t or ngx_msec_t) to avoid signedness warnings on platforms with unsigned time_t (notably QNX).
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 13 Feb 2012 15:41:11 +0000
parents 24c0dca04eb9
children 778ef9c3fd2d
comparison
equal deleted inserted replaced
4473:3b877a45d343 4474:41f640a693de
4266 s.len = value[i].len - 13; 4266 s.len = value[i].len - 13;
4267 s.data = &value[i].data[13]; 4267 s.data = &value[i].data[13];
4268 4268
4269 fail_timeout = ngx_parse_time(&s, 1); 4269 fail_timeout = ngx_parse_time(&s, 1);
4270 4270
4271 if (fail_timeout == NGX_ERROR) { 4271 if (fail_timeout == (time_t) NGX_ERROR) {
4272 goto invalid; 4272 goto invalid;
4273 } 4273 }
4274 4274
4275 continue; 4275 continue;
4276 } 4276 }