]> git.sur5r.net Git - openldap/commitdiff
let the error propagate to overlays (ITS#6633)
authorPierangelo Masarati <ando@openldap.org>
Sun, 29 Aug 2010 15:35:47 +0000 (15:35 +0000)
committerPierangelo Masarati <ando@openldap.org>
Sun, 29 Aug 2010 15:35:47 +0000 (15:35 +0000)
servers/slapd/back-bdb/extended.c

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;
 }