From: Kurt Zeilenga Date: Fri, 26 Jul 2002 15:29:36 +0000 (+0000) Subject: use strongAuthRequired instead of operationsError to indicate X-Git-Tag: NO_SLAP_OP_BLOCKS~1325 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e981dcbad5377495726bba2bf50dfa071a7c1a2a;p=openldap use strongAuthRequired instead of operationsError to indicate authentication required before modification. --- diff --git a/servers/slapd/backend.c b/servers/slapd/backend.c index 5d14ba91d4..8fb2e9a522 100644 --- a/servers/slapd/backend.c +++ b/servers/slapd/backend.c @@ -909,7 +909,7 @@ backend_check_restrictions( if( op->o_ndn.bv_len == 0 ) { *text = "modifications require authentication"; - return LDAP_OPERATIONS_ERROR; + return LDAP_STRONG_AUTH_REQUIRED; } } }