From: Howard Chu Date: Wed, 3 Oct 2007 09:00:41 +0000 (+0000) Subject: ITS#5164 lack of a db_open handler is not an error X-Git-Tag: OPENLDAP_REL_ENG_2_4_9~20^2~561 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ae0c57a4208a67c995608f3179988460bce7b859;p=openldap ITS#5164 lack of a db_open handler is not an error --- diff --git a/servers/slapd/slapi/plugin.c b/servers/slapd/slapi/plugin.c index ecaf0fa697..a7f9e165e8 100644 --- a/servers/slapd/slapi/plugin.c +++ b/servers/slapd/slapi/plugin.c @@ -598,7 +598,7 @@ slapi_int_call_plugins( rc = slapi_int_get_plugins( be, funcType, &tmpPlugin ); if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) { /* Nothing to do, front-end should ignore. */ - return 1; + return rc; } for ( pGetPlugin = tmpPlugin ; *pGetPlugin != NULL; pGetPlugin++ ) {