fix webdav_op_propfind_children return check webdav

Sat, 18 Jan 2020 16:48:03 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sat, 18 Jan 2020 16:48:03 +0100
branch
webdav
changeset 234
f30740c3aafb
parent 233
c5985d2fc19a
child 235
4990147c58d0

fix webdav_op_propfind_children return check

src/server/webdav/webdav.c file | annotate | diff | comparison | revisions
--- 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;
             }
         }

mercurial