From ae0c57a4208a67c995608f3179988460bce7b859 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Wed, 3 Oct 2007 09:00:41 +0000 Subject: [PATCH] ITS#5164 lack of a db_open handler is not an error --- servers/slapd/slapi/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++ ) { -- 2.39.5