Submitted by brian brianfrance.com.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@830284
13f79535-47bb-0310-9956-
ffa450edef68
**
** PRIVATE REPOSITORY FUNCTIONS
*/
-request_rec *dav_fs_get_request_rec(const dav_resource *resource)
+static request_rec *dav_fs_get_request_rec(const dav_resource *resource)
{
return resource->info->r;
}
dav_fs_remove_resource,
dav_fs_walk,
dav_fs_getetag,
+ NULL,
dav_fs_get_request_rec,
- dav_fs_pathname,
- NULL
+ dav_fs_pathname
};
static dav_prop_insert dav_fs_insert_prop(const dav_resource *resource,
*/
void *ctx;
- /* return request record */
+ /* Get the request rec for a resource */
request_rec * (*get_request_rec)(const dav_resource *resource);
- /* return path */
+ /* Get the pathname for a resource */
const char * (*get_pathname)(const dav_resource *resource);
};