mirror of
https://github.com/nginx/nginx.git
synced 2024-12-23 15:40:03 -06:00
Improved code readablity.
No functional changes.
This commit is contained in:
parent
83dceda868
commit
84d1e7de0c
@ -429,7 +429,9 @@ ngx_http_add_variable(ngx_conf_t *cf, ngx_str_t *name, ngx_uint_t flags)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
v->flags &= flags | ~NGX_HTTP_VAR_WEAK;
|
if (!(flags & NGX_HTTP_VAR_WEAK)) {
|
||||||
|
v->flags &= ~NGX_HTTP_VAR_WEAK;
|
||||||
|
}
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
@ -494,7 +496,9 @@ ngx_http_add_prefix_variable(ngx_conf_t *cf, ngx_str_t *name, ngx_uint_t flags)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
v->flags &= flags | ~NGX_HTTP_VAR_WEAK;
|
if (!(flags & NGX_HTTP_VAR_WEAK)) {
|
||||||
|
v->flags &= ~NGX_HTTP_VAR_WEAK;
|
||||||
|
}
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
@ -161,7 +161,9 @@ ngx_stream_add_variable(ngx_conf_t *cf, ngx_str_t *name, ngx_uint_t flags)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
v->flags &= flags | ~NGX_STREAM_VAR_WEAK;
|
if (!(flags & NGX_STREAM_VAR_WEAK)) {
|
||||||
|
v->flags &= ~NGX_STREAM_VAR_WEAK;
|
||||||
|
}
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
@ -227,7 +229,9 @@ ngx_stream_add_prefix_variable(ngx_conf_t *cf, ngx_str_t *name,
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
v->flags &= flags | ~NGX_STREAM_VAR_WEAK;
|
if (!(flags & NGX_STREAM_VAR_WEAK)) {
|
||||||
|
v->flags &= ~NGX_STREAM_VAR_WEAK;
|
||||||
|
}
|
||||||
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user