]> git.sur5r.net Git - openldap/commitdiff
s/substring/substrings/
authorKurt Zeilenga <kurt@openldap.org>
Sat, 27 May 2000 22:46:37 +0000 (22:46 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 27 May 2000 22:46:37 +0000 (22:46 +0000)
servers/slapd/filter.c
servers/slapd/slap.h

index e828e2fc830461abff5aab16f24c6f0284a4fff6..e9cfa1fe3b9d0077917dbb28325c10ab40c68426 100644 (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 );
 
index ce23fb29423a95a6903448f92fe7931d0462921b..a88d38448aad4b1f14c89d4c11e5e4606c6b2301 100644 (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;