mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
15 lines
696 B
C
15 lines
696 B
C
--- ../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c 2018-12-17 11:45:12.000000000 +0300
|
|
+++ ../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c 2020-03-13 01:20:47.498199000 +0300
|
|
@@ -896,10 +896,9 @@
|
|
ngx_cpystrn(last, name.data, name.len + 1);
|
|
|
|
if (ngx_de_info(filename, &dir) == NGX_FILE_ERROR) {
|
|
- ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
|
|
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
|
|
ngx_de_info_n " \"%s\" failed", filename);
|
|
- rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
|
|
- break;
|
|
+ continue;
|
|
}
|
|
}
|
|
|