| 173 | } |
| 174 | |
| 175 | static int dav_core_is_writable(const dav_resource *resource, int propid) |
| 176 | { |
| 177 | const dav_liveprop_spec *info; |
| 178 | |
| 179 | (void) dav_get_liveprop_info(propid, &dav_core_liveprop_group, &info); |
| 180 | return info->is_writable; |
| 181 | } |
| 182 | |
| 183 | static dav_error * dav_core_patch_validate(const dav_resource *resource, |
| 184 | const apr_xml_elem *elem, |
nothing calls this directly
no test coverage detected