comparison src/http/ngx_http_core_module.c @ 1028:af57bfd77b7f

style fix
author Igor Sysoev <igor@sysoev.ru>
date Fri, 12 Jan 2007 21:57:20 +0000
parents a0310ac2814f
children b54a1e283d6d
comparison
equal deleted inserted replaced
1027:ff07ccfaad50 1028:af57bfd77b7f
933 clcfp[i]->exact_match ? "= " : "", &clcfp[i]->name); 933 clcfp[i]->exact_match ? "= " : "", &clcfp[i]->name);
934 934
935 if (clcfp[i]->auto_redirect 935 if (clcfp[i]->auto_redirect
936 && r->uri.len == clcfp[i]->name.len - 1 936 && r->uri.len == clcfp[i]->name.len - 1
937 && ngx_strncmp(r->uri.data, clcfp[i]->name.data, 937 && ngx_strncmp(r->uri.data, clcfp[i]->name.data,
938 clcfp[i]->name.len - 1) == 0) 938 clcfp[i]->name.len - 1)
939 == 0)
939 { 940 {
940 /* the locations are lexicographically sorted */ 941 /* the locations are lexicographically sorted */
941 942
942 r->loc_conf = clcfp[i]->loc_conf; 943 r->loc_conf = clcfp[i]->loc_conf;
943 944