]> git.sur5r.net Git - openldap/commitdiff
Fix compile error when --without-threads configure option is set. Function
authorJulius Enarusai <julius@openldap.org>
Mon, 26 Aug 2002 19:26:09 +0000 (19:26 +0000)
committerJulius Enarusai <julius@openldap.org>
Mon, 26 Aug 2002 19:26:09 +0000 (19:26 +0000)
headers differ from prototypes in ldap_pvt_threads.h

libraries/libldap_r/thr_stub.c

index 28e3e32670f77399296f2c20f90eed6844ad7a0b..f884558ec5e65b715b399839937531d1409d02a5 100644 (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);
 }