diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2020-12-28 10:14:48 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2020-12-28 10:14:48 +0000 |
commit | 0413433eff9ffbe5a3c0053dcc0323efc0f1721e (patch) | |
tree | 46d68cb7fa60c2fda30bc7e071e091a0edbaa4a1 /www/nginx-devel/files | |
parent | 210e026bb2722e70c40b5066b43aae351f3e25b7 (diff) | |
download | ports-0413433eff9ffbe5a3c0053dcc0323efc0f1721e.tar.gz ports-0413433eff9ffbe5a3c0053dcc0323efc0f1721e.zip |
Notes
Diffstat (limited to 'www/nginx-devel/files')
-rw-r--r-- | www/nginx-devel/files/extra-patch-ngx_http_dav_ext_module.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/nginx-devel/files/extra-patch-ngx_http_dav_ext_module.c b/www/nginx-devel/files/extra-patch-ngx_http_dav_ext_module.c new file mode 100644 index 000000000000..cf66be99de49 --- /dev/null +++ b/www/nginx-devel/files/extra-patch-ngx_http_dav_ext_module.c @@ -0,0 +1,15 @@ +--- ../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; + } + } + |