From acf6c79ac732039220f5ba04fec26a92fd9ef192 Mon Sep 17 00:00:00 2001 From: Maxim Konovalov Date: Mon, 19 Mar 2012 14:57:29 +0000 Subject: For the sake of case/switch code readability, 'fall through' comments added. --- src/http/ngx_http_parse.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/http/ngx_http_parse.c') diff --git a/src/http/ngx_http_parse.c b/src/http/ngx_http_parse.c index 876a437af..ace6cfe9a 100644 --- a/src/http/ngx_http_parse.c +++ b/src/http/ngx_http_parse.c @@ -1153,6 +1153,7 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes) break; case '+': r->plus_in_uri = 1; + /* fall through */ default: *u++ = ch; break; -- cgit