Skip to content

Commit

Permalink
Merge pull request alibaba#252 from cfsego/calibaba
Browse files Browse the repository at this point in the history
bugfixed: "buffer" is disabled in access_log
  • Loading branch information
yaoweibin committed May 27, 2013
2 parents 9f16eb6 + 9122bf9 commit dca29be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http/modules/ngx_http_log_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,7 @@ ngx_http_log_set_log(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
}

if (ngx_strncmp(value[i].data, "buffer=", 7) == 0) {
if (skip_file == 0) {
if (skip_file) {
continue;
}

Expand Down

0 comments on commit dca29be

Please sign in to comment.