From: Julio Sánchez Fernández Date: Mon, 22 Oct 2001 19:57:23 +0000 (+0000) Subject: Add a flag to help the value_* functions know whether they are seeing X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~945 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5dbf4bddae245f2cc022428ec7cda5d7028215ea;p=openldap Add a flag to help the value_* functions know whether they are seeing a full value (in attribute type syntax) or a value in the syntax of the matching rule (as happens in filters). --- diff --git a/servers/slapd/slap.h b/servers/slapd/slap.h index cef3d3e3d9..f2594ddd42 100644 --- a/servers/slapd/slap.h +++ b/servers/slapd/slap.h @@ -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;