]> git.sur5r.net Git - openldap/commitdiff
ITS#6633
authorQuanah Gibson-Mount <quanah@openldap.org>
Mon, 3 Jan 2011 19:52:28 +0000 (19:52 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Mon, 3 Jan 2011 19:52:28 +0000 (19:52 +0000)
CHANGES
servers/slapd/back-bdb/extended.c

diff --git a/CHANGES b/CHANGES
index 08c1c85a0b08ea4f6c2f1acff967e493072f1724..ed08ed8ecc36625e23321f7d7f1745962e3a6723 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -19,6 +19,7 @@ OpenLDAP 2.4.24 Engineering
        Fixed slapd sortvals of attributes with 1 value (ITS#6715)
        Fixed slapd syncrepl reuse of presence list (ITS#6707)
        Fixed slapd-bdb entry cache delete failure (ITS#6577)
+       Fixed slapd-bdb error propogation to overlays (ITS#6633)
        Fixed slapd-ldap debug output of timeout (ITS#6721)
        Fixed slapd-ldap DNSSRV referral chaining (ITS#6565)
        Fixed slapd-ndb to honor rootpw setting (ITS#6661)
index 2cc1a5d4624cac07be12f1741166bbaaf52e01c1..112018c5b2058a2ff837db1f69cb92ae38c35f0d 100644 (file)
@@ -49,6 +49,6 @@ bdb_extended( Operation *op, SlapReply *rs )
        }
 
        rs->sr_text = "not supported within naming context";
-       return LDAP_UNWILLING_TO_PERFORM;
+       return rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
 }