mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-09 08:42:22 -04:00
LDAPworld P8: UD does not compile when NO_CACHE defined
This commit is contained in:
parent
8893be2975
commit
daeb0284b1
1 changed files with 19 additions and 0 deletions
|
|
@ -722,3 +722,22 @@ SIG_FN chwinsz()
|
|||
(void) signal(SIGWINCH, chwinsz);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(NO_CACHE)
|
||||
|
||||
void ldap_uncache_entry( LDAP *ld, char *dn )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
int ldap_enable_cache( LDAP *ld, long timeout, long maxmem )
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void ldap_flush_cache( LDAP *ld )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endif /* NO_CACHE */
|
||||
|
|
|
|||
Loading…
Reference in a new issue