mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
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:
parent
fb7ac08ada
commit
48593e1484
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue