summaryrefslogtreecommitdiff
path: root/modules/examples
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2010-05-04 17:40:43 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2010-05-04 17:40:43 +0000
commit01d300298fb085da230b81173851cad737749d98 (patch)
tree1f6af63a2f19c745a45fe65d79382aa1338b4cd0 /modules/examples
parent26c7d9b10d98b1bc94cc58facb0ce98a464f1450 (diff)
downloadhttpd-01d300298fb085da230b81173851cad737749d98.tar.gz
Catch up with ap_[proc|global]_mutex_create api change
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@940981 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/examples')
-rw-r--r--modules/examples/mod_example_ipc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/examples/mod_example_ipc.c b/modules/examples/mod_example_ipc.c
index 079ccac339..d0a83cfa98 100644
--- a/modules/examples/mod_example_ipc.c
+++ b/modules/examples/mod_example_ipc.c
@@ -186,8 +186,8 @@ static int exipc_post_config(apr_pool_t *pconf, apr_pool_t *plog,
/* Create global mutex */
- rs = ap_global_mutex_create(&exipc_mutex, exipc_mutex_type, NULL, s, pconf,
- 0);
+ rs = ap_global_mutex_create(&exipc_mutex, NULL, exipc_mutex_type, NULL,
+ s, pconf, 0);
if (APR_SUCCESS != rs) {
return HTTP_INTERNAL_SERVER_ERROR;
}