Skip to content

Commit acadd85

Browse files
committed
fixed a typo
1 parent 6fdb8db commit acadd85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ngx_http_combined_upstreams_module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ static ngx_command_t ngx_http_combined_upstreams_commands[] = {
223223
};
224224

225225

226-
static ngx_http_variable_t ngx_http_conbined_upstreams_vars[] =
226+
static ngx_http_variable_t ngx_http_combined_upstreams_vars[] =
227227
{
228228
{ ngx_string("upstrand_path"), NULL,
229229
ngx_http_get_upstrand_path_var_value, 0,
@@ -1080,7 +1080,7 @@ ngx_http_combined_upstreams_add_vars(ngx_conf_t *cf)
10801080
{
10811081
ngx_http_variable_t *var, *v;
10821082

1083-
for (v = ngx_http_conbined_upstreams_vars; v->name.len; v++) {
1083+
for (v = ngx_http_combined_upstreams_vars; v->name.len; v++) {
10841084
var = ngx_http_add_variable(cf, &v->name, v->flags);
10851085
if (var == NULL) {
10861086
return NGX_ERROR;

0 commit comments

Comments
 (0)