summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/ngx_http_dav_module.c
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2016-03-30 11:52:16 +0300
committerRuslan Ermilov <ru@nginx.com>2016-03-30 11:52:16 +0300
commit7ad57da59821294255610545b2b5ce07e74124a5 (patch)
tree91bb44ad5950b703d0f49a8744f0b9b08cf29f11 /src/http/modules/ngx_http_dav_module.c
parentdfbc51a8cc850154fe8839408f32c7e322f5cdf0 (diff)
downloadnginx-7ad57da59821294255610545b2b5ce07e74124a5.tar.gz
nginx-7ad57da59821294255610545b2b5ce07e74124a5.tar.bz2
Style.
Diffstat (limited to 'src/http/modules/ngx_http_dav_module.c')
-rw-r--r--src/http/modules/ngx_http_dav_module.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/http/modules/ngx_http_dav_module.c b/src/http/modules/ngx_http_dav_module.c
index b9fadd001..36002656b 100644
--- a/src/http/modules/ngx_http_dav_module.c
+++ b/src/http/modules/ngx_http_dav_module.c
@@ -621,11 +621,11 @@ destination_done:
if ((r->uri.data[r->uri.len - 1] == '/' && *(last - 1) != '/')
|| (r->uri.data[r->uri.len - 1] != '/' && *(last - 1) == '/'))
{
- ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
- "both URI \"%V\" and \"Destination\" URI \"%V\" "
- "should be either collections or non-collections",
- &r->uri, &dest->value);
- return NGX_HTTP_CONFLICT;
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
+ "both URI \"%V\" and \"Destination\" URI \"%V\" "
+ "should be either collections or non-collections",
+ &r->uri, &dest->value);
+ return NGX_HTTP_CONFLICT;
}
depth = ngx_http_dav_depth(r, NGX_HTTP_DAV_INFINITY_DEPTH);