Fix compile error when --without-threads configure option is set. Function

headers differ from prototypes in ldap_pvt_threads.h
This commit is contained in:
Julius Enarusai 2002-08-26 19:26:09 +00:00
parent fb7ac08ada
commit 48593e1484

View file

@ -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);
}