mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-13 07:43:50 -05:00
If no plugins are registered, have front-end silently ignore
This commit is contained in:
parent
8dd11efd39
commit
5883b270b8
1 changed files with 2 additions and 1 deletions
|
|
@ -573,7 +573,8 @@ doPluginFNs(
|
|||
|
||||
rc = getAllPluginFuncs(be, funcType, &tmpPlugin );
|
||||
if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
|
||||
return rc;
|
||||
/* Nothing to do, front-end should ignore. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
for ( pGetPlugin = tmpPlugin ; *pGetPlugin != NULL; pGetPlugin++ ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue