summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authordougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2001-04-25 05:26:39 +0000
committerdougm <dougm@13f79535-47bb-0310-9956-ffa450edef68>2001-04-25 05:26:39 +0000
commitc85dcf612e94615d8f07f3c00f79d45ab1777b04 (patch)
tree78da6de39755425f2f713bd91e43b7acf0bf369c /dso
parentfe936b418d58b3c14aa8e7da6325a49d10aa68bf (diff)
downloadlibapr-c85dcf612e94615d8f07f3c00f79d45ab1777b04.tar.gz
get apr_os_dso_handle_put working
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/os2/dso.c4
-rw-r--r--dso/unix/dso.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/dso/os2/dso.c b/dso/os2/dso.c
index 7c910c33a..2b0a1cde9 100644
--- a/dso/os2/dso.c
+++ b/dso/os2/dso.c
@@ -141,11 +141,11 @@ APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer, apr
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;
(*aprdso)->load_error = APR_SUCCESS;
(*aprdso)->failed_module = NULL;
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;
}