comparison src/http/ngx_http_parse.c @ 4546:4988fa232629

For the sake of case/switch code readability, 'fall through' comments added.
author Maxim Konovalov <maxim@nginx.com>
date Mon, 19 Mar 2012 14:57:29 +0000
parents 667aaf61a778
children 67653855682e
comparison
equal deleted inserted replaced
4545:ba39af7274ed 4546:4988fa232629
1151 r->uri_ext = u + 1; 1151 r->uri_ext = u + 1;
1152 *u++ = ch; 1152 *u++ = ch;
1153 break; 1153 break;
1154 case '+': 1154 case '+':
1155 r->plus_in_uri = 1; 1155 r->plus_in_uri = 1;
1156 /* fall through */
1156 default: 1157 default:
1157 *u++ = ch; 1158 *u++ = ch;
1158 break; 1159 break;
1159 } 1160 }
1160 1161