summaryrefslogtreecommitdiff
path: root/dso/unix
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@apache.org>2001-04-25 05:26:39 +0000
committerDoug MacEachern <dougm@apache.org>2001-04-25 05:26:39 +0000
commitee97b267407f7cbf592a375017cf255f2bf735bf (patch)
tree78da6de39755425f2f713bd91e43b7acf0bf369c /dso/unix
parentf3f48a10ce5590ae476026521bd3da7e21a897d7 (diff)
downloadapr-ee97b267407f7cbf592a375017cf255f2bf735bf.tar.gz
get apr_os_dso_handle_put working
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/unix')
-rw-r--r--dso/unix/dso.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index 04e8a964d..679b6ba46 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -70,11 +70,11 @@
#endif
APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **aprdso,
- apr_os_dso_handle_t *osdso,
+ apr_os_dso_handle_t osdso,
apr_pool_t *pool)
{
*aprdso = apr_pcalloc(pool, sizeof **aprdso);
- (*aprdso)->handle = *osdso;
+ (*aprdso)->handle = osdso;
(*aprdso)->cont = pool;
return APR_SUCCESS;
}