# HG changeset patch
# User Olaf Wintermann <olaf.wintermann@gmail.com>
# Date 1579362483 -3600
# Node ID f30740c3aafb64f5c6cbdcac4e430c0035dccd2a
# Parent  c5985d2fc19a3bb947de14a0bcd66477aa751ae0
fix webdav_op_propfind_children return check

diff -r c5985d2fc19a -r f30740c3aafb src/server/webdav/webdav.c
--- a/src/server/webdav/webdav.c	Sat Jan 18 16:31:52 2020 +0100
+++ b/src/server/webdav/webdav.c	Sat Jan 18 16:48:03 2020 +0100
@@ -257,7 +257,7 @@
         //   depth is not 0
         // in this case we need to execute propfind_do for all children
         if(usevfs) {
-            if(!webdav_op_propfind_children(op, vfs, uri, path)) {
+            if(webdav_op_propfind_children(op, vfs, uri, path)) {
                 ret = REQ_ABORTED;
             }
         }