Skip to content

Commit

Permalink
Fix issue anomalizer#47, credit erankor
Browse files Browse the repository at this point in the history
  • Loading branch information
xird committed Oct 25, 2017
1 parent f1bcf3b commit b5103f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ngx_http_aws_auth.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static ngx_command_t ngx_http_aws_auth_commands[] = {
0,
0,
NULL },

ngx_null_command
};

Expand Down Expand Up @@ -111,7 +111,7 @@ ngx_http_aws_auth_create_loc_conf(ngx_conf_t *cf)
return NGX_CONF_ERROR;
}

return conf;
return conf;
}

static char *
Expand Down Expand Up @@ -228,7 +228,7 @@ ngx_aws_auth_req_init(ngx_conf_t *cf)

cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);

h = ngx_array_push(&cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers);
h = ngx_array_push(&cmcf->phases[NGX_HTTP_PREACCESS_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}
Expand All @@ -237,7 +237,7 @@ ngx_aws_auth_req_init(ngx_conf_t *cf)

return NGX_OK;
}
/*
/*
* vim: ts=4 sw=4 et
*/

0 comments on commit b5103f8

Please sign in to comment.