Improved code readability (closes #1512).
This commit is contained in:
parent
b051c9ec68
commit
60c24eef64
1 changed files with 2 additions and 2 deletions
|
@ -985,8 +985,8 @@ ngx_process_options(ngx_cycle_t *cycle)
|
|||
p--)
|
||||
{
|
||||
if (ngx_path_separator(*p)) {
|
||||
cycle->conf_prefix.len = p - ngx_cycle->conf_file.data + 1;
|
||||
cycle->conf_prefix.data = ngx_cycle->conf_file.data;
|
||||
cycle->conf_prefix.len = p - cycle->conf_file.data + 1;
|
||||
cycle->conf_prefix.data = cycle->conf_file.data;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue