From: Howard Chu Date: Tue, 23 Sep 2003 05:35:38 +0000 (+0000) Subject: ITS#2704 don't hang client when no preop plugins are loaded X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~674 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a8ae9bb31d7ea57ee631dd9b9398da4c966b2091;p=openldap ITS#2704 don't hang client when no preop plugins are loaded --- diff --git a/servers/slapd/bind.c b/servers/slapd/bind.c index 0d87e303ed..80c1081acb 100644 --- a/servers/slapd/bind.c +++ b/servers/slapd/bind.c @@ -540,6 +540,8 @@ do_bind( #endif switch ( rs->sr_err ) { + case 1: /* no plugins present, continue normally */ + break; case SLAPI_BIND_SUCCESS: /* Continue with backend processing */ break;