From: Kurt Zeilenga Date: Thu, 30 Nov 2000 20:27:27 +0000 (+0000) Subject: Unbind should not return a result X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1635 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fc630ea1f8de1ddddee04dc2d2f120fb1a51f254;p=openldap Unbind should not return a result --- diff --git a/servers/slapd/back-shell/unbind.c b/servers/slapd/back-shell/unbind.c index 8cbd1116b9..9621de1ab3 100644 --- a/servers/slapd/back-shell/unbind.c +++ b/servers/slapd/back-shell/unbind.c @@ -26,15 +26,11 @@ shell_back_unbind( FILE *rfp, *wfp; if ( si->si_unbind == NULL ) { - send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL, - "unbind not implemented", NULL, NULL ); return 0; } if ( (op->o_private = (void *) forkandexec( si->si_unbind, &rfp, &wfp )) == (void *) -1 ) { - send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL, - "could not fork/exec", NULL, NULL ); return 0; }