comparison src/http/ngx_http_parse.c @ 832:fe681917a24d

style fix
author Igor Sysoev <igor@sysoev.ru>
date Tue, 31 Oct 2006 12:30:24 +0000
parents 82742d66547a
children 9ddb57468082
comparison
equal deleted inserted replaced
831:82742d66547a 832:fe681917a24d
207 c = (u_char) (ch | 0x20); 207 c = (u_char) (ch | 0x20);
208 if (c >= 'a' && c <= 'z') { 208 if (c >= 'a' && c <= 'z') {
209 break; 209 break;
210 } 210 }
211 211
212 if ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-') 212 if ((ch >= '0' && ch <= '9') || ch == '.' || ch == '-') {
213 {
214 break; 213 break;
215 } 214 }
216 215
217 switch (ch) { 216 switch (ch) {
218 case ':': 217 case ':':