comparison src/http/modules/ngx_http_auth_basic_module.c @ 2571:5c8d9e3cbd8a

delete unneeded variable
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 Mar 2009 11:08:08 +0000
parents f0f64973ba2f
children a6954ce88b80
comparison
equal deleted inserted replaced
2570:62131e628135 2571:5c8d9e3cbd8a
468 { 468 {
469 ngx_http_auth_basic_loc_conf_t *alcf = conf; 469 ngx_http_auth_basic_loc_conf_t *alcf = conf;
470 470
471 ngx_str_t *value; 471 ngx_str_t *value;
472 ngx_uint_t n; 472 ngx_uint_t n;
473 ngx_http_core_loc_conf_t *clcf;
474 ngx_http_script_compile_t sc; 473 ngx_http_script_compile_t sc;
475
476 clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
477 474
478 if (alcf->user_file.data) { 475 if (alcf->user_file.data) {
479 return "is duplicate"; 476 return "is duplicate";
480 } 477 }
481 478