From: Julius Enarusai Date: Mon, 26 Aug 2002 19:26:09 +0000 (+0000) Subject: Fix compile error when --without-threads configure option is set. Function X-Git-Tag: NO_SLAP_OP_BLOCKS~1170 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=48593e1484ddb944444d3f62e8cb12eb913a8773;p=openldap Fix compile error when --without-threads configure option is set. Function headers differ from prototypes in ldap_pvt_threads.h --- 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); }