diff options
author | Graham Leggett <minfrin@apache.org> | 2021-09-26 14:46:06 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2021-09-26 14:46:06 +0200 |
commit | cd702575311a4f7fcca21579e60560d61b48bb6f (patch) | |
tree | 81ed3d58775626add33ddffe1f933068bde4c21a /modules/dav | |
parent | Add dav_get_liveprop_element() to hide the implementation by which (diff) | |
download | apache2-cd702575311a4f7fcca21579e60560d61b48bb6f.tar.xz apache2-cd702575311a4f7fcca21579e60560d61b48bb6f.zip |
Clarify where the element can be obtained.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893644 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav')
-rw-r--r-- | modules/dav/main/mod_dav.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/dav/main/mod_dav.h b/modules/dav/main/mod_dav.h index dd54499bf8..5979ffb2a4 100644 --- a/modules/dav/main/mod_dav.h +++ b/modules/dav/main/mod_dav.h @@ -917,9 +917,9 @@ struct dav_hooks_liveprop ** and property elements that need to be taken into account when ** generating a property. The document element and property element ** are made available in the dav_liveprop_elem structure under the - ** DAV_PROP_ELEMENT key in the resource pool, accessible as follows: + ** resource, accessible as follows: ** - ** apr_pool_userdata_get(&elem, DAV_PROP_ELEMENT, resource->pool); + ** dav_get_liveprop_element(resource); ** ** Returns one of DAV_PROP_INSERT_* based on what happened. ** |