From d5f64cd85fcd1eba62f5148b97def5f373f65533 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Mon, 28 Nov 2016 17:41:28 -0500 Subject: [PATCH] [mod_webdav] compile fix when locking not enabled --- src/mod_webdav.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod_webdav.c b/src/mod_webdav.c index d98f35c4..2157ef15 100644 --- a/src/mod_webdav.c +++ b/src/mod_webdav.c @@ -574,7 +574,7 @@ static int webdav_delete_file(server *srv, connection *con, handler_ctx *hctx, p } } #else - UNUSED(p); + UNUSED(hctx); #endif } @@ -753,7 +753,7 @@ static int webdav_copy_file(server *srv, connection *con, handler_ctx *hctx, phy } } #else - UNUSED(p); + UNUSED(hctx); #endif return status; } @@ -1298,7 +1298,7 @@ static int webdav_has_lock(server *srv, connection *con, handler_ctx *hctx, buff #else UNUSED(srv); UNUSED(con); - UNUSED(pconf); + UNUSED(hctx); UNUSED(uri); #endif -- 2.11.4.GIT