Skip to content
Snippets Groups Projects
Commit fb3028a1 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5519

parent 916f35b5
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.10 Engineering
Fixed libldap file descriptor leak with SELinux (ITS#5507)
Fixed libldap_r missing stubs (ITS#5519)
Fixed slapd missing termination of integerFilter keys (ITS#5503)
Fixed slapd multiple attrs in URI (ITS#5516)
Fixed slapd-bdb/hdb MAXPATHLEN (ITS#5531)
......
......@@ -226,6 +226,16 @@ int ldap_pvt_thread_pool_resume (
return(0);
}
int ldap_pvt_thread_pool_pausing( ldap_pvt_thread_pool_t *tpool )
{
return(0);
}
ldap_pvt_thread_pool_pausecheck( ldap_pvt_thread_pool_t *tpool )
{
return(0);
}
void *ldap_pvt_thread_pool_context( )
{
return(NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment