From: Julio Sánchez Fernández Date: Fri, 9 Jul 1999 14:30:41 +0000 (+0000) Subject: Fix mr_add prototype to deal with the two indexing functions. X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bc6ecc0b17c54eae511a97f9fbba52959a627955;p=openldap Fix mr_add prototype to deal with the two indexing functions. --- diff --git a/servers/slapd/proto-slap.h b/servers/slapd/proto-slap.h index 2a43d6111e..792a9020ea 100644 --- a/servers/slapd/proto-slap.h +++ b/servers/slapd/proto-slap.h @@ -248,7 +248,13 @@ int oc_add LDAP_P((LDAP_OBJECT_CLASS *oc, const char **err)); Syntax *syn_find LDAP_P((const char *synname)); int syn_add LDAP_P((LDAP_SYNTAX *syn, slap_syntax_check_func *check, const char **err)); MatchingRule *mr_find LDAP_P((const char *mrname)); -int mr_add LDAP_P((LDAP_MATCHING_RULE *mr, slap_mr_normalize_func *normalize, slap_mr_check_func *check, slap_mr_skeys_func *skeys, slap_mr_index_func *ind, const char **err)); +int mr_add LDAP_P((LDAP_MATCHING_RULE *mr, + slap_mr_normalize_func *normalize, + slap_mr_check_func *check, + slap_mr_skeys_func *skeys, + slap_mr_index_func *sind, + slap_mr_index_func *cind, + const char **err)); void schema_info LDAP_P((Connection *conn, Operation *op, char **attrs, int attrsonly)); int schema_init LDAP_P((void));