s/substring/substrings/

This commit is contained in:
Kurt Zeilenga 2000-05-27 22:46:37 +00:00
parent 2273ae0cb7
commit 1a8f509f9a
2 changed files with 3 additions and 3 deletions

View File

@ -405,7 +405,7 @@ get_substring_filter(
}
#ifdef SLAPD_SCHEMA_NOT_COMPAT
f->f_sub = ch_calloc( 1, sizeof(SubstringAssertion) );
f->f_sub = ch_calloc( 1, sizeof(SubstringsAssertion) );
f->f_sub_desc = NULL;
rc = slap_bv2ad( &type, &f->f_sub_desc, text );

View File

@ -398,7 +398,7 @@ typedef struct slap_ss_assertion {
struct berval *sa_initial;
struct berval **sa_any;
struct berval *sa_final;
} SubstringAssertion;
} SubstringsAssertion;
typedef struct slap_mr_assertion {
char *ma_rule; /* optional */
@ -455,7 +455,7 @@ typedef struct slap_filter {
AttributeAssertion *f_un_ava;
/* substring assertion */
SubstringAssertion *f_un_ssa;
SubstringsAssertion *f_un_ssa;
/* matching rule assertion */
MatchingRuleAssertion *f_un_mra;