From 50ddc8108b1473813895517921c4829e63f99d0a Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Fri, 10 Jul 2020 21:34:44 -0400 Subject: [PATCH] [mod_webdav] update rc for PROPFIND allprop (rc currently ignored in case of PROPFIND allprop) --- src/mod_webdav.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod_webdav.c b/src/mod_webdav.c index bdc8df73..10fe6ed2 100644 --- a/src/mod_webdav.c +++ b/src/mod_webdav.c @@ -3141,6 +3141,7 @@ webdav_propfind_live_props (const webdav_propfind_bufs * const restrict pb, __attribute_fallthrough__ #endif default: /* WEBDAV_PROP_UNSET */ + if (pnum == WEBDAV_PROP_ALL) break; return -1; /* not found */ } return 0; /* found (WEBDAV_PROP_ALL) */