]> git.sur5r.net Git - openldap/commitdiff
Add a flag to help the value_* functions know whether they are seeing
authorJulio Sánchez Fernández <jsanchez@openldap.org>
Mon, 22 Oct 2001 19:57:23 +0000 (19:57 +0000)
committerJulio Sánchez Fernández <jsanchez@openldap.org>
Mon, 22 Oct 2001 19:57:23 +0000 (19:57 +0000)
a full value (in attribute type syntax) or a value in the syntax of
the matching rule (as happens in filters).

servers/slapd/slap.h

index cef3d3e3d9a0908f8cf8f178c3911fbeee0046e7..f2594ddd4276986f915ad9dd0dcbbe16e5b70aba 100644 (file)
@@ -345,6 +345,8 @@ typedef struct slap_matching_rule {
 
 /* this is used to kludge objectClass testing */
 #define SLAP_MR_MODIFY_MATCHING 0x0001U
+/* are we matching from a mr asserted value or a real value */
+#define SLAP_MR_VALUE_IS_IN_MR_SYNTAX  0x0002U
 
        Syntax                                  *smr_syntax;
        slap_mr_convert_func    *smr_convert;