]> git.sur5r.net Git - openldap/commitdiff
Change doPluginFNs to return 1 when no plugins were invoked
authorHoward Chu <hyc@openldap.org>
Sat, 12 Apr 2003 12:40:50 +0000 (12:40 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 12 Apr 2003 12:40:50 +0000 (12:40 +0000)
servers/slapd/slapi/plugin.c

index 9b978d9c4e35f49b3690ff2d34bfa5c045ed93fe..dbe02554b86cfe2b38063b9ce86e45b5d563dd1f 100644 (file)
@@ -614,13 +614,13 @@ doPluginFNs(
        SLAPI_FUNC *pGetPlugin = NULL, *tmpPlugin = NULL; 
 
        if ( pPB == NULL ) {
-               return 0;
+               return 1;
        }
 
        rc = getAllPluginFuncs( be, funcType, &tmpPlugin );
        if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
                /* Nothing to do, front-end should ignore. */
-               return 0;
+               return 1;
        }
 
        for ( pGetPlugin = tmpPlugin ; *pGetPlugin != NULL; pGetPlugin++ ) {