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).
This commit is contained in:
Julio Sánchez Fernández 2001-10-22 19:57:23 +00:00
parent be89c094f6
commit 5dbf4bddae

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