From 48593e1484ddb944444d3f62e8cb12eb913a8773 Mon Sep 17 00:00:00 2001 From: Julius Enarusai Date: Mon, 26 Aug 2002 19:26:09 +0000 Subject: [PATCH] Fix compile error when --without-threads configure option is set. Function headers differ from prototypes in ldap_pvt_threads.h --- libraries/libldap_r/thr_stub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/libldap_r/thr_stub.c b/libraries/libldap_r/thr_stub.c index 28e3e32670..f884558ec5 100644 --- a/libraries/libldap_r/thr_stub.c +++ b/libraries/libldap_r/thr_stub.c @@ -181,13 +181,13 @@ ldap_pvt_thread_pool_destroy ( } int ldap_pvt_thread_pool_getkey ( - void *ctx, void *key, void **data, void **kfree ) + void *ctx, void *key, void **data, ldap_pvt_thread_pool_keyfree_t **kfree ) { return(0); } int ldap_pvt_thread_pool_setkey ( - void *ctx, void *key, void *data, void *kfree ) + void *ctx, void *key, void *data, ldap_pvt_thread_pool_keyfree_t *kfree ) { return(0); } -- 2.39.5