style fix: remove double semicolons
Igor Sysoev
14 years ago
116 | 116 |
cf->conf_file->file.name.len = filename->len;
|
117 | 117 |
cf->conf_file->file.name.data = filename->data;
|
118 | 118 |
cf->conf_file->file.offset = 0;
|
119 | |
cf->conf_file->file.log = cf->log;;
|
|
119 |
cf->conf_file->file.log = cf->log;
|
120 | 120 |
cf->conf_file->line = 1;
|
121 | 121 |
|
122 | 122 |
block = 0;
|
2214 | 2214 |
sc.source = &value[1];
|
2215 | 2215 |
sc.lengths = &flcf->upstream.store_lengths;
|
2216 | 2216 |
sc.values = &flcf->upstream.store_values;
|
2217 | |
sc.variables = ngx_http_script_variables_count(&value[1]);;
|
|
2217 |
sc.variables = ngx_http_script_variables_count(&value[1]);
|
2218 | 2218 |
sc.complete_lengths = 1;
|
2219 | 2219 |
sc.complete_values = 1;
|
2220 | 2220 |
|
2428 | 2428 |
sc.source = &value[1];
|
2429 | 2429 |
sc.lengths = &plcf->upstream.store_lengths;
|
2430 | 2430 |
sc.values = &plcf->upstream.store_values;
|
2431 | |
sc.variables = ngx_http_script_variables_count(&value[1]);;
|
|
2431 |
sc.variables = ngx_http_script_variables_count(&value[1]);
|
2432 | 2432 |
sc.complete_lengths = 1;
|
2433 | 2433 |
sc.complete_values = 1;
|
2434 | 2434 |
|