]> git.sur5r.net Git - openldap/commitdiff
Adjust result code when entry is not found to noSuchObject
authorKurt Zeilenga <kurt@openldap.org>
Wed, 11 Oct 2000 18:19:26 +0000 (18:19 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 11 Oct 2000 18:19:26 +0000 (18:19 +0000)
servers/slapd/back-bdb/passwd.c

index cb6ca711f6643c2ce9f38be24200c91d9598d4c9..76613bbb7d20ead6ea6f2f21fbe8e2ac00981f1a 100644 (file)
@@ -130,7 +130,7 @@ retry:      /* transaction retry */
 
        if( e == NULL ) {
                *text = "could not locate authorization entry";
-               rc = LDAP_OPERATIONS_ERROR;
+               rc = LDAP_NO_SUCH_OBJECT;
                goto done;
        }