summaryrefslogtreecommitdiffstats
path: root/modules/dav/fs/lock.c
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2002-07-25 23:56:05 +0200
committerGreg Stein <gstein@apache.org>2002-07-25 23:56:05 +0200
commit681c858e70545803afce6fb319cd964b48e5d6ee (patch)
tree9a3221ff67b59a92e1343e8c1cc6fb157f272e5d /modules/dav/fs/lock.c
parentPatch submitted by David Shane Holden to make docs valid xhtml. (diff)
downloadapache2-681c858e70545803afce6fb319cd964b48e5d6ee.tar.xz
apache2-681c858e70545803afce6fb319cd964b48e5d6ee.zip
In some application environments, the mod_dav hook structures are
allocated dynamically. The structures need a context pointer to represent that dynamic "object", so a pointer was added to the end of each of the more important structures. While providers don't need to add this field to their structures (it will default to NULL), I went ahead and added it to mod_dav_fs for clarity. No MMN bump is required because Apache does not use/examine the fields (only the provider will set and use them). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96195 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/dav/fs/lock.c')
-rw-r--r--modules/dav/fs/lock.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/dav/fs/lock.c b/modules/dav/fs/lock.c
index 1185af2a32..02a8518dd7 100644
--- a/modules/dav/fs/lock.c
+++ b/modules/dav/fs/lock.c
@@ -1549,5 +1549,7 @@ const dav_hooks_locks dav_hooks_locks_fs =
dav_fs_append_locks,
dav_fs_remove_lock,
dav_fs_refresh_locks,
- NULL, /* get_resource */
+ NULL, /* lookup_resource */
+
+ NULL /* ctx */
};