mirror of
https://github.com/nginx/nginx.git
synced 2025-06-12 13:42:55 +08:00
fix number of arguments
This commit is contained in:
parent
6778476a66
commit
fc99b009bc
@ -476,7 +476,7 @@ ngx_http_dav_access(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
|
|||||||
|
|
||||||
lcf->access = 0700;
|
lcf->access = 0700;
|
||||||
|
|
||||||
for (i = 1; i < 3; i++) {
|
for (i = 1; i < cf->args->nelts; i++) {
|
||||||
|
|
||||||
p = value[i].data;
|
p = value[i].data;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user