If no plugins are registered, have front-end silently ignore

This commit is contained in:
Luke Howard 2003-01-21 14:52:33 +00:00
parent 8dd11efd39
commit 5883b270b8

View file

@ -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++ ) {