dougm 01/04/24 22:26:40
Modified: dso/os2 dso.c
dso/unix dso.c
include apr_portable.h
Log:
get apr_os_dso_handle_put working
Revision Changes Path
1.23 +2 -2 apr/dso/os2/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/os2/dso.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- dso.c 2001/04/19 15:17:28 1.22
+++ dso.c 2001/04/25 05:26:39 1.23
@@ -141,11 +141,11 @@
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;
1.38 +2 -2 apr/dso/unix/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- dso.c 2001/04/19 16:43:20 1.37
+++ dso.c 2001/04/25 05:26:39 1.38
@@ -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;
}
1.52 +1 -1 apr/include/apr_portable.h
Index: apr_portable.h
===================================================================
RCS file: /home/cvs/apr/include/apr_portable.h,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- apr_portable.h 2001/04/22 21:05:41 1.51
+++ apr_portable.h 2001/04/25 05:26:39 1.52
@@ -404,7 +404,7 @@
* @deffunc apr_status_t apr_os_dso_handle_put(apr_dso_handle_t **dso,
apr_os_dso_handle_t *thedso, apr_pool_t *pool)
*/
APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **dso,
- apr_os_dso_handle_t *thedso,
+ apr_os_dso_handle_t thedso,
apr_pool_t *pool);
/**