Style.
This commit is contained in:
parent
16cde140ff
commit
e666c4ff67
1 changed files with 3 additions and 2 deletions
|
@ -44,14 +44,15 @@ ngx_parse_http_time(u_char *value, size_t len)
|
|||
}
|
||||
}
|
||||
|
||||
for (p++; p < end; p++)
|
||||
for (p++; p < end; p++) {
|
||||
if (*p != ' ') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (end - p < 18) {
|
||||
return NGX_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
if (fmt != isoc) {
|
||||
if (*p < '0' || *p > '9' || *(p + 1) < '0' || *(p + 1) > '9') {
|
||||
|
|
Loading…
Reference in a new issue